Questions

Q:

What is my PIN number ?

15284979_1144906482283121_6846321683334684022_n1500009455.png image

A) 93714 B) 42789
C) 36671 D) 93747
 
Answer & Explanation Answer: D) 93747

Explanation:

From the hints,

Only two options for 1st and 2nd digits => 4,2 and 9,3 since it is single digits

Sum of second and third digit  = 10 

If 2 => 3rd digit = 8

If 3 => 3rd digit = 7

4th digit = 2nd digit + 1 => (2+1 =3) or (3+1 = 4)

Sum of all digits = 30

Let 5th digit be x

=> 1st possibility = 4 + 2 + 8 + 3 + x = 30 => x = 13 (Not possible since it has 2 digits)

=> 2nd possibility = 9 + 3 + 7 + 4 + x = 30 => x = 7

Therefore, the PIN is 93747 

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

21 6449
Q:

Water soluble vitamin include

A) vitamin C B) niacin
C) riboflavin D) all of the above
 
Answer & Explanation Answer: D) all of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

31 6448
Q:

The rolling plan concept in our country started with the

A) Third plan B) Fourth plan
C) Fifth plan D) Seventh plan
 
Answer & Explanation Answer: C) Fifth plan

Explanation:

The Rolling plan refers to one-year plans in the five-year perspective. under Rolling plan, there would be an annual appraisal of the progress of the plan and on the basis of such an appraisal, the plan for the next year will be prepared. The plan would go on rolling year after year.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

17 6446
Q:

Cathode rays are 

A) electromagnetic wave B) stream of alpha particle
C) stream of electrons D) radiations
 
Answer & Explanation Answer: C) stream of electrons

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

13 6446
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 6444
Q:

Which keystroke is used for updating a field?

A) F11 B) F12
C) F6 D) F9
 
Answer & Explanation Answer: D) F9

Explanation:

F9 keystroke is used for updating a field.

Report Error

View Answer Report Error Discuss

5 6439
Q:

Artificial Intelligence is associated with which generation?

A) Sixth generation B) Fifth generation
C) Third generation D) Fourth generation
 
Answer & Explanation Answer: B) Fifth generation

Explanation:

artificial_intelligence_is_associated_with_which_generation1537786749.jpg image

Artificial Intelligence is associated with Fifth Generation Computers.


Artificial Intelligence is an area of Computer Science concerned with making the computer perform tasks which, to be successfully done by human beings, require intelligence.

AI is a reality made possible by using parallel processing and superconductors. Computer devices with artificial intelligence are still in development, but some of these technologies are beginning to emerge and be used such as voice recognition.

Report Error

View Answer Report Error Discuss

6 6427
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 6421