Questions

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:

Four statements are given below at A, B, C and D. There may be some errors in the given statement(s). The incorrect statement is your answer.

A) A. The result is the ostensible setting aside of the writer from the reporter triptych of travelogue, diary entries, and philosophical. B) B. What results is a triptych of travelogue diary entries, and philosophical asides that ostensibly set the writer apart from the reporter?
C) C. Triptych of travelogues, diary entries and philosophical asides are the results that genuinely set the reporter apart. D) D. Setting the writer apart from the reporter ostensibly the triptych of travelogue, diary entries and philosophical asides.
 
Answer & Explanation Answer:

Explanation:

Ans. E.
Triptych means a set of three associated artistic, literary, or musical works intended to be appreciated together.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL

0 2046
Q:

Which Governor-General prohibited practice of 'Sati' in 1829?

A) Sir George Barlow B) Lord William Bentinck
C) Warren Hastings D) Lord Minto
 
Answer & Explanation Answer: B) Lord William Bentinck

Explanation:

Lord William Bentinck was the Governor-General who prohibited practice of 'Sati' in the year 1829.

Report Error

View Answer Report Error Discuss

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

4 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:

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

The largest expenditure component of GDP is

A) Consumption B) Net exports
C) Government spending D) Investments
 
Answer & Explanation Answer: A) Consumption

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2045
Q:

Activation of the receptors by stimuli is called

A) Perception B) Habituation
C) Adaptation D) Sensation
 
Answer & Explanation Answer: D) Sensation

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2045
Q:

The unit for measuring electric power is the

A) Steridian B) Watts
C) Watts D) Volts
 
Answer & Explanation Answer: C) Watts

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2045