Questions

Q:

Ball bearings are used in cycles, scooters etc to

A) Increase the friction between the wheel and the axle B) Reduce the friction between the wheel and the axle
C) Reduce the friction between ground and the whee D) None of the above
 
Answer & Explanation Answer: B) Reduce the friction between the wheel and the axle

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

47 13708
Q:

Surface water resources are highest in

A) Ganga plains B) North-Eastern India
C) Peninsular India D) Indus Plains
 
Answer & Explanation Answer: A) Ganga plains

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

48 13705
Q:

The first tiger reserve in India to officially introduce a mascot, which has been named Bhoorsingh the Barasingha is

A) Sunderbans Tiger Reserve B) Bandhavgarh Tiger Reserve
C) Kanha Tiger Reserve D) Corbett Tiger Reserve
 
Answer & Explanation Answer: C) Kanha Tiger Reserve

Explanation:

The Kanha Tiger Reserve in Madhya Pradesh has become the first Tiger reserve in India to officially introduce a mascot, which has named Bhoorsingh the Barasingha.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk

34 13679
Q:

Ankara is the capital of which country?

A) Uruguay B) Turkey
C) Uganda D) Vanuatu
 
Answer & Explanation Answer: B) Turkey

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals

92 13669
Q:

Sensitivity analysis is used to

A) identify the risks which have the largest potential impact on the project. B) determine which risks are most troubling to the customer.
C) identify hidden requirements that were not recognized at the outset of the project. D) determine which requirements will add the greatest customer satisfaction for the least effort.
 
Answer & Explanation Answer: A) identify the risks which have the largest potential impact on the project.

Explanation:

“Sensitivity analysis helps to determine which risks have the most potential impact on the project.”

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

13 13658
Q:

When you save to this, your data will remain intact even when the computer is turned off ____

A) RAM B) Mother board
C) Secondary storage device D) Primary storage device
 
Answer & Explanation Answer: C) Secondary storage device

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

24 13646
Q:

Which of the following animals has a comparatively longer intestine?

 

A) Fox B) Tiger
C) Dog D) Rabbit
 
Answer & Explanation Answer: D) Rabbit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: Bank Exams

11 13622
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 13621