Questions

Q:

The theory which advocates that living beings can arise only from other living beings is termed

A) Bio-genesis B) Abiogenesis
C) Catastrophism D) Cosmozoic
 
Answer & Explanation Answer: A) Bio-genesis

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science

48 13373
Q:

An Excel Workbook is a collection of

A) Charts B) Worksheets
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

An M.S Excel Workbook is a collection of both Worksheets and Charts.

 

An_Excel_Workbook_is_a_collection_of1558067892.jpg image

Report Error

View Answer Report Error Discuss

29 13369
Q:

A prescribed set of well-defined instructions for solving mathematical problems is called ________

A) A compiler B) A code
C) A description D) An algorithm
 
Answer & Explanation Answer: D) An algorithm

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

36 13368
Q:

In which of the following animals is respiration done by skin?

A) Flying fish B) Sea horse
C) Frog D) Chemeleon
 
Answer & Explanation Answer: C) Frog

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds

92 13360
Q:

Only movable bone in the skull

A) Occipital bone B) Frontal bone
C) Mandible D) Temporal bone
 
Answer & Explanation Answer: C) Mandible

Explanation:

The skul contains the bones like Occipital bone, Frontal bone, Mandible, Temporal bone, Parietal bone. The mandible, or jaw bone, is the only movable bone of the skull, forming the temporomandibular joint with the temporal bone. The lower teeth are rooted into the mandible while the upper teeth are rooted in the two maxillae.

 

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank PO

50 13359
Q:

Crack the Relation Logical Puzzle ?

20108561_1367416623365438_8515941278875417415_n1501053222.jpg image

A) Son B) Himself
C) Father D) Uncle
 
Answer & Explanation Answer: C) Father

Explanation:

Man's Father is Madhu's Father's Son => Madhu itself. So the Man in the photograph is Madhu's son. 

Report Error

View Answer Report Error Discuss

Filed Under: Logic Puzzles
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

48 13356
Q:

Name the clan Buddha belonged to

A) Gnathrika B) Maurya
C) Sakya D) Kuru
 
Answer & Explanation Answer: C) Sakya

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

29 13347
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 13337