Questions

Q:

Find the missing number in the following puzzle?

 

A) 86 B) 98
C) 104 D) 112
 
Answer & Explanation Answer: B) 98

Explanation:

Here the answer is 98.

 

The logic in the given puzzle:

2+3 = 8
3+7 = (7+2)x3 = 27
4+5 = (5+3)x4 = 32
5+8 = (8+4)x5 = 60
6+7 = (7+5)x6 = 72

Similarly,

7+8 = (8+6)x7 = 98.

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles
Exam Prep: Bank Exams

70 46930
Q:

#define clrscr() 100

main()

{

clrscr();

printf( "%dn", clrscr() );

}

A) 100 B) 0
C) Compilation error D) Exception occurs
 
Answer & Explanation Answer: A) 100

Explanation:

Preprocessor executes as a seperate pass before the execution of the compiler. So textual replacement of clrscr() to 100 occurs.The input program to compiler looks like this :

main ()

{

100;

printf("%d\n",100);

}

Note: 100; is an executable statement but with no action. So it doesn't give any problem.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

24 46879
Q:

Find the potential energy gained by a body of mass 60 kg, if it is raised by 12 m. (use g = 10 m/s2)

 

A) 7200 B) 50
C) 3600 D) 25
 
Answer & Explanation Answer: A) 7200

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 46865
Q:

Japan invaded Manchuria in 1931 because

 

A) Japan wanted to take back lands that belonged to it B) Manchuria had refused to make peace with Japan
C) Manchuria had invaded Japan during World War I D) Japan wanted raw materials and natural resources
 
Answer & Explanation Answer: D) Japan wanted raw materials and natural resources

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History
Exam Prep: Bank Exams

12 46821
Q:

How many millimeters make ten kilometers?

 

A) 1010 B) 109
C) 108 D) 107
 
Answer & Explanation Answer: D) 107

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 46807
Q:

The gravitational force of attraction between two bodies is __________________ the product of their masses.

 

A) directly proportional to the square of B) inversely proportional to
C) inversely proportional to the square of   D) directly proportional to  
 
Answer & Explanation Answer: D) directly proportional to  

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 46748
Q:

Economic Survey is published by ___________.

 

A) Governments of India B) Indian Statistical Institute  
C) Ministry of Finance D) Planning Commission
 
Answer & Explanation Answer: C) Ministry of Finance

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 46659
Q:

If  1 1 1 1 = R
    2 2 2 2 = T
    3 3 3 3 = E
    4 4 4 4 = N

 

Then  5 5 5 5 = ?

A) Y B) Z
C) T D) X
 
Answer & Explanation Answer: A) Y

Explanation:

If you add all the terms of the LHS of equality, then the last letter of the sum written in words would give you the RHS.

1 + 1 + 1 + 1 = 4 = FOUR

2 + 2 + 2 + 2 = 8 = EIGHT

3 + 3 + 3 + 3 = 12 = TWELVE

4 + 4 + 4 + 4 = 16 = SIXTEEN

 

So, following the same pattern.

5 + 5 + 5 + 5 = 20 = TWENTY

 

That gives us our answer to 5 5 5 5 =  "Y".

Report Error

View Answer Report Error Discuss

87 46571