Questions

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 18642
Q:

NH3 oxidation number?

A) -1 B) +1
C) 0 D) -3
 
Answer & Explanation Answer: C) 0

Explanation:

NH3, Ammonia is a neutral compound as the individual oxidation numbers elements that make up the compound NH3 are Nitrogen (N) and Hydrogen (H) sum to zero. 

We do not speak of the oxidation number of a molecule. We can speak of the oxidation numbers of the individual elements that make up the compound.

 

Here the oxidation number of Nirogen is -3 and that of Hydrogen is +1.

Now, NH3 = 1(-3) + 3(+1) = -3 + 3 = 0.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

31 18571
Q:

Which is the second most abundant metal in the earth's crust ?

A) Iron B) Aluminium
C) Copper D) Zinc
 
Answer & Explanation Answer: A) Iron

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

57 18566
Q:

Telecom company Nokia belongs to which country?

A) Denmark B) USA
C) Sweden D) Finland
 
Answer & Explanation Answer: D) Finland

Explanation:

Telecom_company_NOKIA_company_belongs1542268061.png image

NOKIA belongs to the countyry Finland.

Report Error

View Answer Report Error Discuss

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

98 18555
Q:

Dr. M.S.Subbalakshmi has distinguished herself in the field of 

A) Kathak B) Bharathanatyam
C) Playing Violin D) Vocal Music
 
Answer & Explanation Answer: D) Vocal Music

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

61 18553
Q:

Air pressure is usually highest when the air is 

A) warm and moist B) cool and dry
C) warm and dry D) cool and moist
 
Answer & Explanation Answer: D) cool and moist

Explanation:

Both warmth and moisture reduce the density of air and hence its pressure is high.

                                  Air_pressure_is_usually_highest_when_the_air_is1558073685.png image

Report Error

View Answer Report Error Discuss

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

90 18540
Q:

You can use the tab key to ________

A) move a cursor across the screen B) indent a paragraph
C) move the cursor down the screen D) both (a) and (b)
 
Answer & Explanation Answer: D) both (a) and (b)

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

59 18493
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 18447