Questions

Q:

Highest Civilian Honour received by Sania Mirza is _________.

A) Padma Shri B) Padma Bhushan
C) Padma Vibhushan D) Bharat Ratna
 
Answer & Explanation Answer: B) Padma Bhushan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

0 2047
Q:

The Shiites believed that the Umayyad

A) should pray more B) should not be in power
C) got special treatment D) should rule
 
Answer & Explanation Answer: B) should not be in power

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

3 2047
Q:

Where are the Garo Hills located?

A) Assam B) Nagaland
C) Meghalaya D) Mizoram
 
Answer & Explanation Answer: C) Meghalaya

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: AIEEE , Bank Exams , CAT

1 2047
Q:

Which train was recently named as the 'Vande Bharat Express' by the Railways Ministry?

A) Uday Express 1 B) Antyodaya 10
C) 23 Humsafar Express D) Train 18
 
Answer & Explanation Answer: D) Train 18

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2046
Q:

Define HCMOS?

Answer

High-density n-type Complimentary Metal Oxide Silicon field effect transistor.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2046
Q:

Write a c program to copy a data of file to other file.

Answer

#include<stdio.h>
int main(){
  FILE *p,*q;
  char file1[20],file2[20];
  char ch;
  printf("\nEnter the source file name to be copied:");
  gets(file1);
  p=fopen(file1,"r");
  if(p==NULL){
      printf("cannot open %s",file1);
      exit(0);
  }
  printf("\nEnter the destination file name:");
  gets(file2);
  q=fopen(file2,"w");
  if(q==NULL){
      printf("cannot open %s",file2);
      exit(0);
  }
  while((ch=getc(p))!=EOF)
      putc(ch,q);
  printf("\nCOMPLETED");
  fclose(p);
  fclose(q);
 return 0;
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2046
Q:

What happens to electrons in an ionic bond?

A) collision of electrons B) Sharing of electrons
C) Both A & B D) Transfer of electrons
 
Answer & Explanation Answer: D) Transfer of electrons

Explanation:

An ionic bond is formed between two molecules when transfer of valency electrons take place between them. 

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

2 2045
Q:

Magnesium (Mg) + Oxygen (O2) = ?

A) Mg2O B) MgO4
C) O2Mg D) MgO
 
Answer & Explanation Answer: D) MgO

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

4 2045