Questions

Q:

Which of the following is not transferred by alveoli?

A) Gases B) Oxygen
C) Blood D) Carbondioxide
 
Answer & Explanation Answer: C) Blood

Explanation:

The main function of the pulmonary alveoli is to perform the transfer and exchange of gases. Here in the given options, blood is only one which is not gas.

 

Hence, blood is not transferred by alveoli.

Report Error

View Answer Report Error Discuss

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

4 4848
Q:

The Government of India in order to provide some relief to the exporters announced a relief package of Rs.______

A) 325 Crores B) 250Crores
C) 400Crores D) 500 Crores
 
Answer & Explanation Answer: A) 325 Crores

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank PO

2 4846
Q:

The Yarlung Zangbo river in India is known as

A) Godavari B) Brahmaputra
C) Ganga D) Indus
 
Answer & Explanation Answer: B) Brahmaputra

Explanation:

The Yarlung Zangbo river in India is known as Brahmaputra. The river Brahmaputra in China is called Yarlung Tsangpo or Yarlung Zangbo river. In Assam and Arunachal Pradesh it is called Lohit or luit meaning blood.

the_yarlung_zangbo_river_in_india_is_known_as1560848958.jpg image 

The Brahmaputra is one of the major rivers of Asia, a trans-boundary river which flows through China, India and Bangladesh.

 

Report Error

View Answer Report Error Discuss

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

7 4846
Q:

Which choice best describes the polarity of BrF5?

A) nonpolar bonds / nonpolar molecule B) nonpolar bonds / polar molecule
C) polar bonds / polar molecule D) polar bonds / nonpolar molecule
 
Answer & Explanation Answer: C) polar bonds / polar molecule

Explanation:
Report Error

View Answer Report Error Discuss

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

2 4845
Q:

Which among the following is a system call used for process management

A) fork() B) exec()
C) getppid() D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

All the above listed are the System calls for process management

Report Error

View Answer Report Error Discuss

Filed Under: Operating Systems
Exam Prep: GATE
Job Role: Software Architect

0 4845
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 4843
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 4843
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 4842