Questions

Q:

Cooler, older, oceanic lithosphere sink into the mantle at

A) sites of long-lived, hot spot volcanism in the ocean basins B) rift zones along mid-ocean ridges
C) subduction zones along convergent plate boundaries D) transform fault zones along divergent plate boundaries
 
Answer & Explanation Answer: C) subduction zones along convergent plate boundaries

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2097
Q:

In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?

Answer

For load-time dynamic linking: Load module to be loaded is read into memory. Any reference to a target external module causes that module to be loaded and the references are updated to a relative address from the start base address of the application module.


With run-time dynamic loading: Some of the linking is postponed until actual reference during execution. Then the correct module is loaded and linked.

Report Error

View answer Workspace Report Error Discuss

0 2097
Q:

What substance gives plants their green color?

A) Chloroform B) Chlorine
C) Chlorophyll D) Caustic soda
 
Answer & Explanation Answer: C) Chlorophyll

Explanation:

Chlorophyll is the pigment that gives pant leaves their green 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

2 2097
Q:

Blisters are a sign of which classification of burn?

A) First-degree B) Second-degree
C) Third-degree D) Fourth-degree
 
Answer & Explanation Answer: B) Second-degree

Explanation:

Burns are classified into 4 degrees. They are ::

 

1. First-degree (superficial) burns. First-degree burns affect only the epidermis, or outer layer of skin.

2. Second-degree (partial thickness) burns. Second-degree burns involve the epidermis and part of the dermis layer of skin.

3. Third-degree (full thickness) burns.

4. Fourth-degree burns.

 

Blisters are a sign of Second-degree burns.

Report Error

View Answer Report Error Discuss

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

2 2097
Q:

Soil that forms on unconsolidated deposits is called

A) humus B) bedrock
C) transported soil D) residual soil
 
Answer & Explanation Answer: C) transported soil

Explanation:

Transported soils form from weathered material deposits, which are transported by natural forces to a new site, away from the site of origin.

Report Error

View Answer Report Error Discuss

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

3 2097
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of four alternatives suggested, select the one which best expresses the
same sentence in Passive/Active voice.


I saw the master conducting the orchestra.

A) I saw that the orchestra was being conducted by the master. B) I saw the orchestra being conducted by the master.
C) The master was seen conducting the orchestra by me. D) The master was conducting the orchestra and I saw that.
 
Answer & Explanation Answer: B) I saw the orchestra being conducted by the master.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

2 2096
Q:

Which error are you likely to get when you run the following program?

main()

{

  struct emp

  {

      char name[20];

      float sal;

  };

  struct emp e[10];

  int i;

  for ( i = 0 ; i <= 9; i++)

        scanf ( "%s %f" , e[i].name, &e[i].sal );

}

Answer

Floating point formats not linked

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2096
Q:

What would be the output of the following program?

main()

{

    float a = 0.7;

    if ( a < 0.7f )

          printf ( " C ");

    else 

          Printf ( " C++ ");

}

Answer

C++

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2096