Questions

Q:

Who is the first Indian to take a hat trick in an international test ?

A) Jasu Patel B) Kapil Dev
C) Harbajan Singh D) B. S. Chandra Sekhar
 
Answer & Explanation Answer: C) Harbajan Singh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

13 6468
Q:

A clock is started at 11 a.m. By 600 seconds past 6 p.m, the hour hand has turned through ?

A) 155 degrees B) 175 degrees
C) 205 degrees D) 215 degrees
 
Answer & Explanation Answer: D) 215 degrees

Explanation:

The total angle traced by the hour hand is the angle traced in 7 hours and 10 minutes.
We know that the angle traced by the hour hand in one hour is 30º and in one minute is 1/2º.
Therefore, (30º x 7) + (10 x 1/2º) = 215º is the angle traced by the hour hand.

Report Error

View Answer Report Error Discuss

Filed Under: Clock puzzles
Exam Prep: Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO

15 6466
Q:

Are you certified in CPR, First Aid, and AED?

Answer

Here the intention of the interviewer is to know that whether you are certified medical assistant or not.


NOTE ::


Before the interview, be sure to check if your certifications are still valid. Remember that the Red Cross’s First Aid/CPR/AED certifications last for only 2 years, so it’s important to set a reminder to get re-certified after 2 years.


 


Sample Answer ::


First Aid, CPR, and AED training was part of my medical assistant training, and my Red Cross certifications are still valid for 20 more months. I understand that I need to take review courses every two years to get re-certified.

Report Error

View answer Workspace Report Error Discuss

5 6464
Q:

When did the first Railway Train begin to carry passengers and freight?

A) 1814 AD B) 1830 AD
C) 1853 AD D) 1784 AD
 
Answer & Explanation Answer: B) 1830 AD

Explanation:

In 1814, George Stephenson developed steam engine to haul coal from mines to ports by railways. In 1830, the first railway train began to carry passengers and freight from Liverpool to Manchester.

Report Error

View Answer Report Error Discuss

Filed Under: World History

11 6463
Q:

Which is true of the 1912 presidential election?

A) Because all three major candidates were Progressive, the Socialist won B) Because all three major candidates were Progressive, Progressive votes were split
C) Although none of the candidates was Progressive, the Progressives decided the election D) Although none of the candidates was Progressive, Progressive ideas were important
 
Answer & Explanation Answer: B) Because all three major candidates were Progressive, Progressive votes were split

Explanation:

Because all three major candidates were Progressive, Progressive votes were split" is the one among the following that is true of the 1912 presidential election.

The correct option among all the options that are given in the question is the option "B".

Report Error

View Answer Report Error Discuss

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

4 6458
Q:

India's forest sponge iron plant is at

A) Kothagudam B) Kurnool
C) Kadapa D) Kavaratti
 
Answer & Explanation Answer: A) Kothagudam

Explanation:

Kothagudam is in Andhra Pradesh. The sponge iron will act as a substitute for steel scrap and be used as feed stock of electric arc steel making.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

9 6458
Q:

What word begins and ends with an E but only has one letter?

A) Eye B) Envelope
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) Envelope

Explanation:

Envelope is a letter holder for one letter and in the question it mean that it holds one letter. Eye is also a word which starts and end with E but has one letter in the middle.

Report Error

View Answer Report Error Discuss

3 6455
Q:

We want to round off x, a Float to an Int value. The correct way to do so would be

A) Y = ( int ) ( x + 0.5 ) ; B) Y = int ( x + 0.5) ;
C) Y = ( int ) x + 0.5; D) Y = ( int ) ( ( int ) x + 0.5 )
 
Answer & Explanation Answer: A) Y = ( int ) ( x + 0.5 ) ;

Explanation:

Rounding off a value means replacing it by a nearest value that is approximately equal or smaller or greater to the given number.

 

y = (int)(x + 0.5); here x is any float value. To roundoff, we have to typecast the value of x by using (int)

 

Example:

 

#include

 

int main ()

 

{

 

  float x = 2.6;

 

  int y = (int)(x + 0.5);

 

  printf ("Result = %d\n", y );

 

  return 0;

 

}

 

Result : 3

Report Error

View Answer Report Error Discuss

Filed Under: Programming

3 6453