Questions

Q:

What is the capital of Finland?

A) Conakry B) Prague
C) Helsinki D) None of the above
 
Answer & Explanation Answer: C) Helsinki

Explanation:

Helsinki is the capital of Finland

Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals

53 12952
Q:

The rockcut temples of Mahabalipuram were built were built under the patronage of the

A) Chola Kings B) Pallava Kings
C) Pandya Kings D) Satavahana Kings
 
Answer & Explanation Answer: B) Pallava Kings

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

17 12947
Q:

Which is the largest City of Nepal?

 

A) Hetauda B) Pokhara
C) Biratnagar D) Kathmandu
 
Answer & Explanation Answer: D) Kathmandu

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals
Exam Prep: Bank Exams

10 12937
Q:

When a Bill is referred to a joint sitting of both the Houses of Indian Parliament , it has to be passed by____

A) a simple majority of members present and voting B) Three-fourths majority of members present and voting
C) Two-thirds majority of the House D) Absolute majority of the total membership of the Houses
 
Answer & Explanation Answer: A) a simple majority of members present and voting

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

17 12936
Q:

Which of the following statements BEST describes the role of Communication during Service Operation?

A) Communication is a separate process that needs to be defined and executed with Service Operation B) Good communication is essential for successful Service Operation, just as it is for any other phase of the Lifecycle
C) Communication is more important in Service Operation than in any other stage of the Service Lifecycle D) Communication is defined as part of all processes and is executed in Service Operation
 
Answer & Explanation Answer: B) Good communication is essential for successful Service Operation, just as it is for any other phase of the Lifecycle

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

0 12931
Q:

Which one among the following is the heaviest

A) 1 mole of water molecules B) 1 mole of ammonia molecules
C) 1 mole of sodium atoms D) 1 mole of hydrogen molecules
 
Answer & Explanation Answer: C) 1 mole of sodium atoms

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

30 12891
Q:

Which one of the following propounded that ' destiny determines everything, man is powerless'

A) Jains B) Buddhists
C) Ajivakas D) Mimansakas
 
Answer & Explanation Answer: C) Ajivakas

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

19 12865
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 12861