Questions

Q:

Which team won the 10th Indian Premier League trophy 2017  ?

A) Mumbai Indians B) Rising Pune Supergiants
C) Kolkata Knight Riders D) Sunrisers Hyderabad
 
Answer & Explanation Answer: A) Mumbai Indians

Explanation:

In Cricket, Mumbai Indians lifted the 10th Indian Premier League trophy for the third time, as they recorded a scintillating 1-run win against Rising Pune Supergiant in the title clash at Hyderabad during final.  Mumbai successfully defended a total of 129 and restricted Pune to 128/6 to lift their third IPL trophy. Krunal Pandya from Mumbai Indians was named the man of the match.

Report Error

View Answer Report Error Discuss

Filed Under: Sports

23 11761
Q:

The H.C.F. of two numbers is 23 and the other two factors of their L.C.M. are 13 and 14. The larger of the two numbers is:

A) 276 B) 299
C) 322 D) 345
 
Answer & Explanation Answer: C) 322

Explanation:

Clearly, the numbers are (23 x 13) and (23 x 14).

 

 

 

 Larger number = (23 x 14) = 322.

Report Error

View Answer Report Error Discuss

12 11744
Q:

Santhal, a folk dance of India, belongs to which state?

 

A) Karnataka B) Odisha
C) West Bengal D) Maharashtra
 
Answer & Explanation Answer: C) West Bengal

Explanation:

Santhal, one of the best tribal folk dances of India, belongs to the state of West Bengal.

 

Report Error

View Answer Report Error Discuss

Filed Under: Indian Culture
Exam Prep: Bank Exams

10 11736
Q:

Total internal reflection can take place when light travels from

A) Air to glass B) Air to water
C) Water to glass D) Diamond to glass
 
Answer & Explanation Answer: D) Diamond to glass

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

39 11729
Q:

The metal which reacts most violently with with cold water is

A) calcium B) sodium
C) magnesium D) potassium
 
Answer & Explanation Answer: D) potassium

Explanation:

Potassium reacts violently with water liberating hydrogen. The reaction is so violent that the liberated hydrogen catches fire.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

47 11719
Q:

The famous battle of Takkolam of South India was fought between _______

A) Cholas and North Chalukyas B) Cholas and Rashtrakutas
C) Cholas and Hoyasals D) Cholas and Pandyas
 
Answer & Explanation Answer: B) Cholas and Rashtrakutas

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

17 11713
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 11682
Q:

 What is the name of the virus that fool a user into downloading and executing them by pretending to be useful applications  ?

A) Trojan horses B) Keylogger
C) Worm D) File virus
 
Answer & Explanation Answer: A) Trojan horses

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams , CAT
Job Role: Analyst , IT Trainer

32 11668