Questions

Q:

Who gave the Slogan Inquilab Zindabadh ?

A) M.K.Gandhi B) Nehru
C) Iqbal D) Bal Gangadhar Thilak
 
Answer & Explanation Answer: C) Iqbal

Explanation:

It was given by Iqbal

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

0 3446
Q:

The conspicuous role of Gandhi is that of a--

A) father B) reformer
C) teacher D) liberator
 
Answer & Explanation Answer: B) reformer

Explanation:

The conspicuous role of Gandhi is that of a person who makes changes to something in order to improve it.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams

1 3446
Q:

Lady Tata Memorial Awards are given for research in 

A) Leukaemia B) Biodiversity
C) Tuberculosis D) Environmental Protection
 
Answer & Explanation Answer: A) Leukaemia

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

1 3446
Q:

Explain the concept of Reentrancy?

Answer

It is a useful, memory-saving technique for multiprogrammed timesharing systems. A Reentrant Procedure is one in which multiple users can share a single copy of a program during the same period. Reentrancy has 2 key aspects: The program code cannot modify itself, and the local data for each user process must be stored separately. Thus, the permanent part is the code, and the temporary part is the pointer back to the calling program and local variables used by that program. Each execution instance is called activation. It executes the code in the permanent part, but has its own copy of local variables/parameters. The temporary part associated with each activation is the activation record. Generally, the activation record is kept on the stack.


Note: A reentrant procedure can be interrupted and called by an interrupting program, and still execute correctly on returning to the procedure.

Report Error

View answer Workspace Report Error Discuss

0 3445
Q:

The Grand Banks are famous fishing grounds in the _____region

A) North - West Pacific B) South - East Pacific
C) North - West Atlantic D) North - East Atlantic
 
Answer & Explanation Answer: C) North - West Atlantic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

3 3445
Q:

PAS is a drug used in the treatment of

A) Cancer B) Typhoid
C) Malaria D) Tuberculosis
 
Answer & Explanation Answer: D) Tuberculosis

Explanation:

Para-amino salicylic acid (PAS) is used in the treatment of Tuberculosis.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

4 3444
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 3443
Q:

A battlefield always has:

A) Elephants B) Soldiers
C) Arrows D) Chariots
 
Answer & Explanation Answer: C) Arrows

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

2 3443