Questions

Q:

Improve the bracketed part of the sentence.
The doctor (has advice) him to take proper diet.

A) has advised B) had been advised
C) was advised D) No improvement
 
Answer & Explanation Answer: A) has advised

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2082
Q:

Which country has replaced Japan as world’s 2nd largest steel producing country?

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

Explanation:

India replaced Japan as world’s 2nd largest steel producing country.

Report Error

View Answer Report Error Discuss

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

2 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 step happens first in DNA replication?

A) Initiation B) Elongation
C) Termination D) None of the above
 
Answer & Explanation Answer: A) Initiation

Explanation:

In the first step of DNA replication called initiation, the DNA pair gets unwidened.

Report Error

View Answer Report Error Discuss

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

1 2081
Q:

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

Karnataka grows coffee

A) Coffee is being grown in Karnataka. B) Coffee grown in Karnataka.
C) Coffee is grown in Karnataka. D) Let the coffee be grown in Karnataka.
 
Answer & Explanation Answer: C) Coffee is grown in Karnataka.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2081
Q:

The powder keg in the balkans refers to the

A) efforts taken to ease tensions throughout the region B) invasion of the region
C) larger number of munitions factories built in the region D) political instability of the region
 
Answer & Explanation Answer: D) political instability of the region

Explanation:

In the early 20th century, the Balkans were called a "powder keg" because the political situation in the region was very unstable. For a long time, the Ottoman Turks occupied the balkans, and with the rise of nationalism, some balkan states declared independence.

Report Error

View Answer Report Error Discuss

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

1 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