Questions

Q:

Select the correct statement about the Evolution of Animals.

A) The oldest generally accepted fossils of large animals range in age from 565 to 550 million years old. B) No animal fossils are found in strata formed before the Cambrian explosion.
C) Approximately half the phyla of living organisms are found in Cambrian sediments. D) All the above
 
Answer & Explanation Answer: A) The oldest generally accepted fossils of large animals range in age from 565 to 550 million years old.

Explanation:

The oldest generally accepted fossils of large animals range in age from 565 to 550 million years old.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank PO

17 4017
Q:

You can crack me. You can make me. You can tell me. You can play me. What am I?

Answer

A Joke is what you can crack, make, play and tell.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: Bank Exams

14 4017
Q:

The office of  the UN general Assembly is in

A) Vienna B) Paris
C) Newyork D) Zurich
 
Answer & Explanation Answer: C) Newyork

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

4 4017
Q:

What do you call a bear without an ear?

Answer

Given BEAR, if you remove EAR only remains with 'B'.


 


Hence, we call it as 'B', a bear without an ear.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO

11 4015
Q:

The rate of heartbeat is accelerated by the harmone

A) adrenaline B) acetylcholine
C) thyroxine D) pituitrin
 
Answer & Explanation Answer: A) adrenaline

Explanation:

The hormone adrenaline also called epinephrine is known as a stress harmone. In emotional upset (like fear, anger etc.) this harmone is poured into the blood and it accelerates heart beat. The hormone acetylcholine decelerates heartbeat rate.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

10 4015
Q:

What is silly window syndrome?

Answer

It is a problem that can ruin TCP performance. This problem occurs when data are passed to the sending TCP entity in large blocks, but an interactive application on the receiving side reads 1 byte at a time.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Database Administration

0 4014
Q:

Which of the properties of the element is a whole number

A) atomic mass B) atomic number
C) atomic radius D) atomic volume
 
Answer & Explanation Answer: B) atomic number

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

5 4014
Q:

How would you free the memory allocated by the following program?

#include "alloc.h"

#define MAXROW 3

#define MAXCOL 4

main()

{

     int **p, i;

     p = (int **) malloc (MAXROW * sizeof (int *));

      for ( i = 0; i < MAXROW ; i++)

            p[i] = (int *) malloc (MAXCOL * sizeof (int ));

}

Answer

for ( i=0; i < MAXROW ; i++)


free (p[i]);


free (p);

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 4014