Questions

Q:

The absolute value of charge on electron was determined by

A) J.J.Thomson B) R.A. Millikan
C) Rutherford D) Chadwick
 
Answer & Explanation Answer: B) R.A. Millikan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

59 17809
Q:

Smallest of all the continents?

A) Asia B) Australia
C) Africa D) America
 
Answer & Explanation Answer: B) Australia

Explanation:

Australia is the smallest of all the continents

Report Error

View Answer Report Error Discuss

36 17793
Q:

Who coined the term 'Hindu rate of growth' for Indian economy

A) A.K.Sen B) Kirit S.Parikh
C) Raj Krishna D) Montek Singh Ahluwalia
 
Answer & Explanation Answer: C) Raj Krishna

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

33 17773
Q:

The radioactive element most commonly detected in humans is

A) potassium-40 B) cobalt-60
C) iodine-131 D) plutonium-238
 
Answer & Explanation Answer: A) potassium-40

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science

94 17766
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 17736
Q:

Which of the following countries is not a member of the Nuclear Suppliers Group(NSG)

A) France B) Russia
C) USA D) Iran
 
Answer & Explanation Answer: D) Iran

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

38 17730
Q:

Which batsman started his international cricketing career at the age of 16

A) Suresh Raina B) Sachin Tendulkar
C) Piyush Chawla D) Rahul Dravid
 
Answer & Explanation Answer: B) Sachin Tendulkar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

57 17714
Q:

What are the four things needed to connect to the internet?

A) telephone line, modem, computer, and an ISP B) modem, computer, PDA, and ISP
C) telephone line, modem, computer, and PDA D) computer, ISP, modem, and communication software
 
Answer & Explanation Answer: D) computer, ISP, modem, and communication software

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams
Job Role: Bank PO

106 17714