Questions

Q:

Feroz Gandhi Award is associated with

A) Medical Research B) Journalism
C) Preservation of worldlife D) Parlimentory debate
 
Answer & Explanation Answer: B) Journalism

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

193 44177
Q:

In a combination reaction there can be ______.

 

I. two or more than two reactants

II. two or more than two products

III. only one product

 

A) Only I   B) Only I and III
C) Only I and II D) Only II
 
Answer & Explanation Answer: B) Only I and III

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 44116
Q:

The bird which lays more than 100 eggs in one nest is

Answer

Ostrich

Report Error

View answer Workspace Report Error Discuss

726 44025
Q:

Which of the following rivers of peninsular India is distinct from the remaining three?

 

A) Narmada B) Cauvery
C) Krishna D) Godavari
 
Answer & Explanation Answer: A) Narmada

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 44008
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 43950
Q:

Which of the statements given below are correct?


A) In 2017 Pro Kabaddi League, Sandeep Narwal played for Bengaluru Bulls.


B) In 2017, Dani Pedrosa raced in MotoGP for Honda.


C) In 2017, Glenn Maxwell captained the IPL team Kolkata Knight Riders.

 

A) Only B B) Both A and B
C) Both A and C D) A, B and C
 
Answer & Explanation Answer: B) Both A and B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

1 43908
Q:

Which of the following has highest penetration power?

 

A) α– radiations   B) β– radiations  
C) γ– radiations   D) All have same penetration power.  
 
Answer & Explanation Answer: C) γ– radiations  

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 43869
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

86 43842