Questions

Q:

Liquids and gases never show

A) diamagnetic property B) paramagnetic property
C) ferromagnetic property D) electromagnetic property
 
Answer & Explanation Answer: C) ferromagnetic property

Explanation:

On the basis of magnetic properties, substances are classified into three groups namely diamagnetic, paramagnetic and ferromagnetic.

As solids diffuse and reorder very slowly under ambient conditions, the net, directionally dependent (anisotropic) magnetic moment can persist. Conversely, liquids and gases freely tumble and reorder: water rearranges every few pico seconds (10^12 times per second).

Hence liquids and gases can never show ferromagnetic properties.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 2082
Q:

What happens to air when it is heated?

Answer

When heated any substance, the molecules move apart from each other. Alike in the air the molecules move apart from each other. We know that the warm air is lighter than the cool air. Since after heating air gets warmer, it floats up and the cool air comes down to occupy the warm air place.

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

0 2082
Q:

Where is the RAM located in a computer?

A) Monitor B) Processor
C) Mother board D) None of the above
 
Answer & Explanation Answer: C) Mother board

Explanation:

On the right corner of the mother board RAM is located in a computer.

Report Error

View Answer Report Error Discuss

3 2082
Q:

Which of the following statements about water is false?

A) There is extensive intramolecular hydrogen bonding in the condensed phase. B) Water is oxidized to oxygen during photosynthesis.
C) Ice formed by heavy water sinks in normal water. D) Water can act both as an acid and as a base.
 
Answer & Explanation Answer: A) There is extensive intramolecular hydrogen bonding in the condensed phase.

Explanation:

Water possess intermolecular hydrogen bonding in the condensed phase.

 

Hence, the given statement 'There is extensive intramolecular hydrogen bonding in the condensed phase.' about water is FALSE.

Report Error

View Answer Report Error Discuss

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

0 2081
Q:

Where was christianity founded?

A) Jerusalem B) Bethlehem
C) Palestine D) None of the above
 
Answer & Explanation Answer: A) Jerusalem

Explanation:

Christianity was founded by hesus Christ in Jerusalem, capital of Israel.

Report Error

View Answer Report Error Discuss

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

7 2081
Q:

Why we use do-while loop in c?

Answer

It is also called as post tested loop. It is used when it is necessary to execute the loop at least one time. Syntax:

do {
Loop body
} while (Expression);

Example:

int main(){
    int num,i=0;  
    do{
         printf("To enter press 1\n");
         printf("To exit press  2");
         scanf("%d",&num);
         ++i;
         switch(num){
             case 1:printf("You are welcome\n");break;
             default : exit(0);
         }
    }
    while(i<=10);
    return 0;
}

Output: 3 3 4 4

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2081
Q:

Swap two variables without using third variable.

Answer

#include<stdio.h>
int main(){
    int a=5,b=10;
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2081
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 2080