Questions

Q:

Which is the liquid that shows Capillary fall?

Answer

Mercury

Report Error

View answer Workspace Report Error Discuss

Subject: Physics

8 4825
Q:

The 'Neticket' scheme, which allows a passenger to fly without ever visiting a reservation counter has been introduced by :

A) Jet Airwaya B) Sahara Air
C) Indian Airlines D) None of these
 
Answer & Explanation Answer: C) Indian Airlines

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

9 4823
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 4822
Q:

Who governs the INTERNET ?

A) ISOC B) IETF
C) IAB D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer

9 4822
Q:

Who wanted economic freedom with political freedom?

A) Swami Sahajanand Saraswati B) Swami Vivekanand
C) Swami Ramanand D) Swami Dayanand saraswati
 
Answer & Explanation Answer: A) Swami Sahajanand Saraswati

Explanation:
Report Error

View Answer Report Error Discuss

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

7 4820
Q:

The brain is covered by

A) meninges B) skin
C) bone D) all the above
 
Answer & Explanation Answer: D) all the above

Explanation:

The central nervous system ( brain and spinal card ) are invested with the meninges which nourish and protect the system .This again is enclosed inside a bony box which has the skin above it

Report Error

View Answer Report Error Discuss

Filed Under: Biology

14 4820
Q:

Dry ice is nothing but

A) Solid carbon dioxide B) Baking soda
C) Gaseous carbon dioxide D) Carbon monoxide
 
Answer & Explanation Answer: A) Solid carbon dioxide

Explanation:

dry-ice1531812120.jpg image

 

Dry ice is solid form of carbon dioxide, used as a cooling agent.

 

It lower temperature than that of water ice and not leave any residue.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

5 4819
Q:

Why address bus in unidirectional and data bus is bidirectional?

Answer

Because there is no need address traansaction between processor and peripheral device but data bus is needed because data has to be read and write

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

3 4819