Questions

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 4024
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 4024
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 4023
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 4023
Q:

When the simmon commission visited India the Viceroy was

A) Lloyd George B) Lord lrwin
C) Lord Reading D) Lord Ripon
 
Answer & Explanation Answer: B) Lord lrwin

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

4 4022
Q:

Wavelength of which of the following colours of the visible spectrum of light are maximally  absorbed by green plants________

A) Green and Yellow B) Red and Blue
C) Green and Red D) Blue and Yellow
 
Answer & Explanation Answer: B) Red and Blue

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

1 4021
Q:

Who amongst the following is the author of the book ' Freedom from Fear '

A) Nelson Mandela B) Aung San Suukyi
C) Taslima Nasreen D) Benazir Bhutto
 
Answer & Explanation Answer: B) Aung San Suukyi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

10 4019
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 4019