Questions

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 2047
Q:

The hormone that stimulates heart beat is

A) Thyroxine B) Gastrin
C) Glycogen D) Dopamine
 
Answer & Explanation Answer: A) Thyroxine

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

2 2047
Q:

Dr. Babasaheb Ambedkar International Airport is located in which place?

A) Chennai B) Mumbai
C) New Delhi D) Nagpur
 
Answer & Explanation Answer: D) Nagpur

Explanation:

Dr. Babasaheb Ambedkar International Airport is located in Nagpur of Maharashtra state in India.

Report Error

View Answer Report Error Discuss

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

2 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 one of the following elements is used as a timekeeper in atomic clocks?

A) Potassium B) Caesium
C) Calcium D) Magnesium
 
Answer & Explanation Answer: B) Caesium

Explanation:

When exposed to certain frequencies of radiation, such as radio waves, the subatomic particles called electrons that orbit an atom's nucleus will "jump" back and forth between energy states. Clocks based on this jumping within atoms can therefore provide an extremely precise way to count seconds.It is no surprise then that the international standard for the length of one second is based on atoms. Since 1967, the official definition of a second is 9,192,631,770 cycles of the radiation that gets an atom of the element called caesium to vibrate between two energy states.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2046
Q:

In the following question, out of the four alternatives, select the alternative which is the best substitute of the phrase.


A factory, where workers are employed at very low wages for long hours and under poor conditions.

A) Impalpable B) Outset
C) Bloomy D) Sweatshop
 
Answer & Explanation Answer: D) Sweatshop

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

1 2046
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of four alternatives suggested, select the one, which best expresses the same sentence in Passive/Active voice.

Dark clouds have overcast the evening sky.

A) By the dark clouds the evening sky was overcast. B) The evening sky has been overcast by the dark clouds.
C) Dark clouds overcastted the evening sky. D) The sky of the evening was overcasted by dark clouds.
 
Answer & Explanation Answer: B) The evening sky has been overcast by the dark clouds.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

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