Questions

Q:

The battle of Mahabharata is believed to have been foughts at Kurukshetra for

A) 14 days B) 16 days
C) 18 days D) 20 days
 
Answer & Explanation Answer: C) 18 days

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

18 13500
Q:

What can you serve but not eat or drink?

Answer

A tennis ball or badminton shuttle in which we can serve a ball or kock but we cannot eat it.


badminton1585559482.jpg image

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

31 13498
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 13492
Q:

A bird which lays only one egg in two years is the

Answer

Albatross

Report Error

View answer Workspace Report Error Discuss

101 13473
Q:

The working of the quartz crystal in the watch is based on the

A) Piezo - electric Effect B) Edison Effect
C) Photoelectric Effect D) Johnson Effect
 
Answer & Explanation Answer: A) Piezo - electric Effect

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

39 13462
Q:

If a sum of money at simple interest doubles in 6 years, it will become  4 times in

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

Explanation:

 

 

 

 

 

 

let sum =x . s.i.=x

 

 

 

rate =(100*x)/(x*6)=50/3%

 

 

 

now ,sum =x, s.i= 3x, rate =50/3%

 

 

 

time =(100*3x)/(x*50/3) = 18 years

Report Error

View Answer Report Error Discuss

11 13448
Q:

Who among the following writers was, on August 30, 2017, honoured with the Sarswati Samman for 2016?

 

A) Kedarnath Singh B) Mahabaleshwar Sail
C) Rajen Toijmba D) Autar Krishen Rahbar
 
Answer & Explanation Answer: B) Mahabaleshwar Sail

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: Bank Exams

1 13443
Q:

Which one of the following figures represents the following relationship:

Birds, Parrots, Bats

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: C) 3

Explanation:
Report Error

View Answer Report Error Discuss

0 13441