Questions

Q:

In ancient Greek city states the central district would be built on a hilltop and it would contain the chief municipal and religious buildings . What was this place called?

Answer

Acropolis

Report Error

View answer Workspace Report Error Discuss

1 3332
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best
expresses the same sentence in Passive/Active voice.
People drink champagne on New Year’s Eve.

A) Drinking of champagne is done on New Year's Eve. B) New Year's Eve was the day when People drank Champagne.
C) People on Eve of New Year drink champagne. D) Champagne is drunk on New Year’s Eve.
 
Answer & Explanation Answer: D) Champagne is drunk on New Year’s Eve.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 3331
Q:

Who did the historian K M Pannikar call "India's new Manu, the spirit of modern law incarnate"?

Answer

Thomas Babington Macaulay

Report Error

View answer Workspace Report Error Discuss

Subject: World History

7 3331
Q:

Who is the author of book ' Arctic Summer'.

Answer

Dammon Galgut

Report Error

View answer Workspace Report Error Discuss

2 3331
Q:

Point out the error, if any, in the following program.

#include "stdio.h"

main()

{

      unsigned char;

       FILE *fp;

       fp = fopen ("trail", "r");

       while (( ch = getc (fp)) ! = EOF)

               printf ("%c", ch);

       fclose (fp);

}  

Answer

EOF has been defined as #define EOF -1 n the file "stdio.h" and an unsigned char ranges from 0 to 255 hence when EOF is read from the file it cannot be accommodated in ch. Solution is to declare ch as an int.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 3331
Q:

Since foundation of nobel prize awards has been added to the original five disciplines which were considered for award of Nobel Prize

A) Medicine B) Peace
C) Literature D) Economics
 
Answer & Explanation Answer: D) Economics

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

0 3330
Q:

What is the term used in tennis when the score is 40-40?

A) Ace B) Led
C) Deuce D) Tie
 
Answer & Explanation Answer: C) Deuce

Explanation:

When both sides have won the same number of points then: when each side has won one, or two, points, the score is described as "15-all" and "30-all" (or "15-up" and "30-up"), respectively.

However, if each player has won three points, the score is called as "deuce", not "40–all". From that point on in the game, whenever the score is tied, it is described as "deuce", regardless of how many points have been played.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

4 3330
Q:

What is Throughput, Turnaround time, waiting time and Response time?

Answer

Throughput : number of processes that complete their execution per time unit.

Turnaround time : amount of time to execute a particular process.

Waiting time : amount of time a process has been waiting in the ready queue.

Response time : amount of time it takes from when a request was submitted until the firstresponse is produced, not output (for time-sharing environment).

Report Error

View answer Workspace Report Error Discuss

2 3329