Questions

Q:

Who said, " I therefore, want freedom immediately, this very night, before dawn, if it can be had

A) Mahatma Gandhi B) Edwina Mounbatten
C) Jawaharlal Nehru D) Ms. Taslima Nasreen
 
Answer & Explanation Answer: A) Mahatma Gandhi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

43 14919
Q:

Logical puzzle

Miss Anne has eleven kids in her class. She has a bowl containing eleven apples. Now Miss Anne want to divide the eleven apples to the kids, in such a way that a apple should remain in her bowl. How can Miss Anne do it?

Answer

Ten kids will get each one apple. The eleventh kid will get the apple with the bowl.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles

209 14917
Q:

The isotopes of chlorine with mass number 35 and 37 exist in the ratio of

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

78 14916
Q:

Botany is also known as

A) Phytology B) Phycology
C) Pedology D) Plantophyta
 
Answer & Explanation Answer: A) Phytology

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

109 14912
Q:

Which operation is not performed by computer?

A) Understanding B) Controlling
C) Processing D) Inputting
 
Answer & Explanation Answer: A) Understanding

Explanation:

A computer can perform inputting, processing and cotrolling but it can't perform understanding as it is has no brain. It can't earn from its previous experiances.

Report Error

View Answer Report Error Discuss

21 14909
Q:

Microprocessors as switching devices are for which generation computers?

A) Fourth generation B) Third generation
C) Second generation D) First generation
 
Answer & Explanation Answer: A) Fourth generation

Explanation:

Microprocessors are used in the computers of fourth generation computers. Personal microcomputers were possible due to the microprocessors.

 

Microprocessors further revolutionized the development of computers.

 

The first microprocessor called Intel 4004 was developed by American Intel Corporation in 1971.

Report Error

View Answer Report Error Discuss

27 14907
Q:

Who wrote a book describing the theory of economic drain of India during British rule

A) Late lajpat rai B) Mahatma Gandhi
C) Jawaharlal nehru D) Dadabhai naoroji
 
Answer & Explanation Answer: D) Dadabhai naoroji

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

23 14907
Q:

What is the output after compile and run the following code ?

int Output = 10;
boolean b = false;
if((b == true) && ((Output += 10) == 20))
{
System.out.println("We are equal " + Output);
}
else
{
System.out.println("Not equal! " + Output);
}

A) Compilation and output of "We are equal 10" B) Compilation and output of "Not equal! 10"
C) Compilation error, attempting to perform binary comparison on logical data type D) Compilation and output of "Not equal! 20"
 
Answer & Explanation Answer: B) Compilation and output of "Not equal! 10"

Explanation:

The output will be "Not equal! 10". Please note that && is logical AND operator. If first operand before (&&) is false then the other operand will not be evaluated. This illustrates that the Output +=10 calculation was never performed because processing stopped after the first operand was evaluated to be false. If you change the value of b1 to true, processing occurs as you would expect and the output would be "We are equal 20".

Report Error

View Answer Report Error Discuss

Filed Under: Oracle Certification
Job Role: Analyst

12 14870