Questions

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

The EPA studies pollution and other

A) population hazards B) environmental health hazards
C) traffic hazards D) All of the above
 
Answer & Explanation Answer: B) environmental health hazards

Explanation:

The EPA stands for Environment Protection Agency in U.S which studies pollution and other environmental health hazards.

Report Error

View Answer Report Error Discuss

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

1 2084
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 2084
Q:

Why does a fountain pen leak in aeroplane flying at a height?

A) Because of reduced viscosity of the ink in the pen B) Because of increased viscosity of the ink in the pen
C) Because of higher atmospheric pressure outside the pen D) Because of lower atmospheric pressure outside the pen
 
Answer & Explanation Answer: D) Because of lower atmospheric pressure outside the pen

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2084
Q:

Water on the moon was discovered by

A) India B) Japan
C) Russia D) China
 
Answer & Explanation Answer: A) India

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2084
Q:

The main source of organic matter in soil is

A) bacteria B) fungi
C) water D) plants
 
Answer & Explanation Answer: D) plants

Explanation:

The main source of organic matter in soil is the plant and animal tissue that decompose at each level of breakdown.

Report Error

View Answer Report Error Discuss

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

5 2083
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 2083
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 2083