Questions

Q:

Branch of biology in which we study about cultivation of flowering plant

A) Phenology B) Floriculture
C) Agronomy D) Botany
 
Answer & Explanation Answer: B) Floriculture

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

31 7123
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

7 7110
Q:

A device used for the measurement of radioactivity is

A) mass spectrometer B) cyclotron
C) nuclear reactor D) G.M.counter
 
Answer & Explanation Answer: D) G.M.counter

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

13 7109
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 7106
Q:

Which of the following crop is known as Green Gold?

A) Coffee B) Neem
C) Tea D) Rice
 
Answer & Explanation Answer: C) Tea

Explanation:

Tea crop is known as Green Gold.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

11 7106
Q:

The Narmada river originates in _______

A) Vindhyan Range B) Maikal Range
C) Satpura Range D) Mahadeo Range
 
Answer & Explanation Answer: B) Maikal Range

Explanation:

It rises on the Amarkantak plateau in the in the Maikal Range from a spring at a height of 1060m

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

11 7102
Q:

 When three or more AND and OR conditions are combined, it is easier to use the SQL keyword(s):

A) LIKE only. B) IN only.
C) NOT IN only. D) Both IN and NOT IN.
 
Answer & Explanation Answer: D) Both IN and NOT IN.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

2 7099
Q:

The RBI restricts withdrawals from banks under the provisions of which act?

 

 

A) Banking Regulation Act B) RBI Act
C) FEMA D) AML Act
 
Answer & Explanation Answer: A) Banking Regulation Act

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 7099