Questions

Q:

Of the following, which did not influence the fathers of Indian constitution? The Constitution of 

A) The USA B) The USSR
C) Canada D) Ireland
 
Answer & Explanation Answer: B) The USSR

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

4 4033
Q:

Answer the Following Puzzle.

Number Puzzles Questions and Answers

A) 16 B) 13
C) 97 D) 56
 
Answer & Explanation Answer: B) 13

Explanation:

In each circle, starting at the  top left segment ,numbers increase, as you move clockwise,by 2 for the upper left circle,3 for the upper right, 4 for the lower right and 5 for the lower left

Report Error

View Answer Report Error Discuss

Filed Under: Number Puzzles

8 4032
Q:

What is fragmentation? Different types of fragmentation?

Answer

Fragmentation occurs in a dynamic memory allocation system when many of the free blocks are too small to satisfy any request. 


External Fragmentation: External Fragmentation happens when a dynamic memory allocation algorithm allocates some memory and a small piece is left over that cannot be effectively used. If too much external fragmentation occurs, the amount of usable memory is drastically reduced. Total memory space exists to satisfy a request, but it is not contiguous. 


Internal Fragmentation: Internal fragmentation is the space wasted inside of allocated memory blocks because of restriction on the allowed sizes of allocated blocks. Allocated memory may be slightly larger than requested memory; this size difference is memory internal to a partition, but not being used

Report Error

View answer Workspace Report Error Discuss

1 4032
Q:

The book ' All Under Heaven ' was written by

A) Pearl S. Buck B) Sydney Sheldon
C) D.H.Lawrence D) George Bernard Shaw
 
Answer & Explanation Answer: A) Pearl S. Buck

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

1 4030
Q:

The Mughals ruled India for one and half centuries effectively and gave Political unity to the country. In which of the following fields could they not succeed fully?

A) An efficient system of administration B) Political stability
C) Development of trade and industry D) Establishment of a common culture and unification of all communities to become a homogeneous nation
 
Answer & Explanation Answer: D) Establishment of a common culture and unification of all communities to become a homogeneous nation

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

1 4028
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 4027
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 4026
Q:

Where and when the first session of Indian National Congress was held ?

A) Delhi, 1890 B) Mumbai, 1885
C) Madras, 1887 D) Kolkata, 1889
 
Answer & Explanation Answer: B) Mumbai, 1885

Explanation:

The first session of Indian National Congress was held from 28–31 December 1885, in Mumbai and was attended by 72 delegates. Womesh Chandra Bonnerjee was the first president of the Indian National Congress (INC), a voice of Indian opinion to the British government.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

12 4026