Questions

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 2049
Q:

Which molecules prevent cell membranes from dissolving in water?

A) Phospholipids B) Fattyacids
C) Adenosine triphosphates D) None of the above
 
Answer & Explanation Answer: A) Phospholipids

Explanation:

Cell membranes are made up of phospholipids which prevents them from dissolving in water.

Report Error

View Answer Report Error Discuss

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

4 2049
Q:

A doctor who specializes in skin diseases

A) Nephrology B) Dermatology
C) Paediatrician D) Rheumatology
 
Answer & Explanation Answer: B) Dermatology

Explanation:
Report Error

View Answer Report Error Discuss

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

6 2049
Q:

When the Sun is near the horizon during the morning or evening, it appears reddish. The phenomenon that is responsible forth is observation is

A) reflection of light B) refraction of light
C) dispersion of light D) scattering of light
 
Answer & Explanation Answer: D) scattering of light

Explanation:

According to Rayleigh's law, the intensity of scattered light varies inversely as the fourth power of its wavelength. Sunlight consists of seven colours. Of these, red has the maximum wavelength. During sunrise and sunset, the rays have to travel a larger part of the atmosphere because they are very close to the horizon.Therefore, light other than red is mostly scattered away. Most of the red light, which is the least scattered, enters our eyes. Hence, the sun and the sky appear red.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2049
Q:

The saffron-orange colour of Bhutan’s national flag symbolizes _______________

A) the authority of the king B) the secular power of the country
C) the practice of religion D) the purity of the country
 
Answer & Explanation Answer: C) the practice of religion

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

0 2048
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 2048
Q:

What would be the output of the following program?

main()

{

    printf (" %d%d%d ", sizeof (3.14f), sizeof (3.14), sizeof (3. 141);

}

Answer

4  8  10

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2048
Q:

Southerners who were for redemption wanted which of the following?

A) remove blacks from politics B) remove republicans from politics
C) hold political power D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2048