Questions

Q:

Which of the statements given below are correct?

1. The author of the novel 'Dodgers' is Don Winslow.
2. The author of the novel 'Forty Thieves' is Bill Beverly.
3. The author of the novel 'The Corrections' is Thomas Perry.

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams

0 19490
Q:

Select the related word/letters/numbers from the given alternatives:

AKU : ? :: CMW : DNX

A) BGL B) BLQ
C) BGQ D) BLV
 
Answer & Explanation Answer: D) BLV

Explanation:
Report Error

View Answer Report Error Discuss

0 19484
Q:

What happens when you boot up a PC?

A) Portions of the operating system are copied from disk into memory B) Portions of the operating system are copied from memory onto disk
C) Portions of the operating system are compiled D) Portions of the operating system are emulated
 
Answer & Explanation Answer: A) Portions of the operating system are copied from disk into memory

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

35 19482
Q:

If 3$8 = -50, 3$5 = -20 and 2$3 = -10, then find the value of 9$1 = ?

 

A) 10   B) -20  
C) 90   D) 80
 
Answer & Explanation Answer: D) 80

Explanation:
Report Error

View Answer Report Error Discuss

1 19471
Q:

The Indian football team made its first appearance at Olympics in

A) 1936 B) 1948
C) 1952 D) 1956
 
Answer & Explanation Answer: B) 1948

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

69 19452
Q:

Where did Lord Buddha breathe his last

A) Rajgir B) Bodh Gaya
C) Sarnath D) Kushinagar
 
Answer & Explanation Answer: D) Kushinagar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

64 19432
Q:

Three Presidency Banks viz., Bank of Madras, Bank of Bombay and Bank of Calcutta, were merged to form

A) New Bank of India B) Corporation Bank
C) Reserve Bank of India D) Imperial Bank of India(now SBI)
 
Answer & Explanation Answer: D) Imperial Bank of India(now SBI)

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

48 19425
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 19401