Questions

Q:

Which memory management technique involves dividing the memory into fixed sized blocks ?

A) Paging B) Scaling
C) Whiping D) Tracking
 
Answer & Explanation Answer: A) Paging

Explanation:

Paging is a memory management technique in which process address space is broken into blocks of the same size called pages.

Report Error

View Answer Report Error Discuss

Filed Under: Operating Systems
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk

2 4835
Q:

After the ruin of India's trade, industries and handicrafts, the burden of taxation in india had to be mainly borne by

A) Zamindars B) Peasantry
C) Income-tax-payers D) All the above
 
Answer & Explanation Answer: B) Peasantry

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

4 4835
Q:

What element is used in bright flashing advertising signs?

A) Neon B) Helium
C) Mercury D) Radon
 
Answer & Explanation Answer: A) Neon

Explanation:

Neon is the element that is used in bright flashing advertising signs as Neon particulary gives bright color.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

6 4834
Q:

Which Indian city is named after the snake Anantha of Lord Vishnu?

A) Trivandrum B) Tiruchirappalli
C) Tanjavore D) Vellore
 
Answer & Explanation Answer: A) Trivandrum

Explanation:

Thiruvananthapuram also known as Trivandrum, is the capital and the largest city of the Indian state of Kerala is named after the snake Anantha of Lord Vishnu.

Report Error

View Answer Report Error Discuss

16 4833
Q:

Can I increase the size of a dynamically allocated array? < Yes / No> if yes, how?

Answer

Yes, using the realloc() function as shown below:


main()


{


        int *p;


        p = ( int *) malloc (20) ;


        t = p;


        t = (int *) realloc ( p, 40);


        if ( t == NULL )


        Printf (" Cannot reallocate, leaves previous allocated region unchanged ");


       else


       {


              if ( p ==t )


              ;  / * the array expanded at the same region */


             else


            { 


                 free ( p ); / * deallocate the original array */


                 p = t;  /* set p to newly allocated region */


             }


      }


}  

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 4832
Q:

The kilo calories of energy released from one gram of fats is

A) 5.49 B) 4.59
C) 9.45 D) 9.54
 
Answer & Explanation Answer: C) 9.45

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

16 4831
Q:

The biogenetic law was proposed by

A) Alfred Russel Wallace B) Charles Darwin
C) Ernst von Haeckel D) Lamarck
 
Answer & Explanation Answer: C) Ernst von Haeckel

Explanation:

The biogenetic law states that ontogeny (study of development) repeats phylogeny (origin from previous group of racial history), The young one of the frog namely the tadpole is like a fish cosidered to be ancestral to frog.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

9 4831
Q:

Assuming that the phases in a project are concept, development, implementation and termination, which phase typically has the highest degree of uncertainty?

A) Concept B) Development
C) Implementation D) Termination
 
Answer & Explanation Answer: A) Concept

Explanation:

The first phase in a project always has the greatest degree of uncertainty because at this point in time the product is the least well defined. PMBOK, See figure 2-2. [2.1.1]

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 4830