Questions

Q:

Eye Test Logical Challenge

lines1499317691.jpg image

A) 15 B) 14
C) 16 D) 17
 
Answer & Explanation Answer: A) 15

Explanation:
Report Error

View Answer Report Error Discuss

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

58 17946
Q:

Who was known as the 'Father of Lok sabha'

A) Anantasayanam B) Bashyam
C) Mavlankar D) Zkir Hussain
 
Answer & Explanation Answer: C) Mavlankar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

64 17935
Q:

The first Census in India during the British period was held during the tenure of

A) Lord Dufferin B) Lord Lytton
C) Lord Mayo D) Lord Ripon
 
Answer & Explanation Answer: C) Lord Mayo

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

37 17934
Q:

Who among the following has been awarded the Arjuna award 2017 for his contribution to hockey?

 

A) S.V. Sunil B) P.A. Rafel
C) Sardar Singh D) Vikram Negi
 
Answer & Explanation Answer: A) S.V. Sunil

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: Bank Exams

0 17930
Q:

Bhutan’s national language is known as ___________.

 

A) Dzongkha B) Khengkha
C) Tshanglakha D) Lhotshamkha
 
Answer & Explanation Answer: A) Dzongkha

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: Bank Exams

1 17928
Q:

Pravin Amre and Vinod Kambli played for which province in south Africa

A) Border B) Boland
C) Griqualand West D) Gauteng
 
Answer & Explanation Answer: B) Boland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

32 17905
Q:

What will come in place of question mark (?) in the following question?

34 of 35 of 23 of ? = 3174

A) 10550 B) 10540
C) 10580 D) 10500
 
Answer & Explanation Answer: C) 10580

Explanation:

23x35x34x?=31743174x10/3= 10580

Report Error

View Answer Report Error Discuss

0 17887
Q:

In the following pieces of code, B and D will compile without any error. True or false ?

A: StringBuffer sb1 = "abcd";

B: Boolean b = new Boolean("abcd");

C: byte b = 255;

D: int x = 0x1234;

E: float fl = 1.2;

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The code segments B and D will compile without any error. A is not a valid way to construct a StringBuffer, you need to create a StringBuffer object using "new". B is a valid construction of a Boolean (any string other than "true" or "false" to the Boolean constructor will result in a Boolean with a value of "false"). C will fail to compile because the valid range for a byte is -128 to +127 (i.e., 8 bits, signed). D is correct, 0x1234 is the hexadecimal representation in java. E fails to compile because the compiler interprets 1.2 as a double being assigned to a float (down-casting), which is not valid. You either need an explicit cast, as in "(float)1.2" or "1.2f", to indicate a float.

Report Error

View Answer Workspace Report Error Discuss

16 17881