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:

Improve the bracketed part of the sentence.
Neha (would be looked) beautiful in Indian attire.

A) had looking B) was looked
C) would look D) No improvement
 
Answer & Explanation Answer: C) would look

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2082
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:

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:

The Ajanta Cave Paintings are a testimony to the golden age of ____ in India.

A) Buddhism B) Shaivism
C) Jainism D) Vaishnavism
 
Answer & Explanation Answer: A) Buddhism

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

2 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:

Afghan-India Friendship Dam is

A) The Zangmu Dam B) Salma Dam
C) Baglihar Dam D) None of the above
 
Answer & Explanation Answer: B) Salma Dam

Explanation:

Afghan-India Friendship Dam is previously called as Salma Dam between India and Afghanistan on Hari river.

Report Error

View Answer Report Error Discuss

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

13 2080