Questions

Q:

The number indicating the intensity of an earthquake on a Richter scale range between

A) 1 to 7 B) 1 to 9
C) 1 to 8 D) 1 to 12
 
Answer & Explanation Answer: B) 1 to 9

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

10 13459
Q:

The base of an electric iron is brightly polished mainly

A) to make it smooth and frictionless B) to make it rust-proof
C) to reduce heat loss by radiation D) to make it more durable
 
Answer & Explanation Answer: C) to reduce heat loss by radiation

Explanation:

Polished surfaces are poor radiators of heat. So loss of heat on that account is reduced and the electric iron remains hotter than otherwise.

Report Error

View Answer Report Error Discuss

Filed Under: Physics

44 13459
Q:

The credit for the discovery of transuranic element goes to

A) Hahn B) Rutherford
C) Seaborg D) Curie
 
Answer & Explanation Answer: C) Seaborg

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

34 13444
Q:

How does an organization use Resources and Capabilities in creating value?

A) They are used to create value in the form of goods and services B) They are used to create value to the IT organization for Service Support
C) They are used to create value to the IT organization for Service Delivery D) They are used to create value in the form of output for production management
 
Answer & Explanation Answer: A) They are used to create value in the form of goods and services

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

0 13433
Q:

Masses of stars and galaxies are usually expressed in terms of

A) neutron mass B) earth's mass
C) solar mass D) lunar mass
 
Answer & Explanation Answer: C) solar mass

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

58 13431
Q:

Panchayatiraj form of rural government was first adopted by 

A) Rajasthan & Madhya Pradesh B) Rajasthan & West Bengal
C) Rajasthan & Andhra Pradesh D) Rajasthan & Uttar Pradesh
 
Answer & Explanation Answer: C) Rajasthan & Andhra Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

72 13418
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 13418
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 13408