Questions

Q:

Which city has been named as the World Capital of Architecture for 2020?

A) Rio de Janeiro B) Melbourne
C) Tokyo D) Paris
 
Answer & Explanation Answer: A) Rio de Janeiro

Explanation:

Rio de Janeiro has been named as the World Capital of Architecture for 2020.

Report Error

View Answer Report Error Discuss

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

1 2073
Q:

Which is an example of a physical change?

A) Dissolving sugar in water B) Breaking glass
C) Melting of ice D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

In all the above given options, there is no chemical change or reactions takes place only the shape or physical state is changed.

Report Error

View Answer Report Error Discuss

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

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

What would be the output of the following program?

main()

{

    int i = -3, j =2, k =0, m ;

    m = ++j && ++i || ++k ;

    Printf ( "\n%d%d%d%d", i , j , k , m );

}

Answer

-2  3  0  1

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

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

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one, which best express the same sentence in Indirect/Direct speech.

Anil says, "I am glad to be here this morning"

A) Anil says he is glad to be there that morning. B) Anil says that he is glad to be there that morning.
C) Anil was saying that he was glad to be there this morning. D) Anil says that he was glad to be here this morning.
 
Answer & Explanation Answer: B) Anil says that he is glad to be there that morning.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE , TOEFL

0 2072
Q:

A sentence has been given in Active/Passive Voice. Out of the four given alternatives, select the one which best expresses the same sentence inPassive/Active Voice

Who burned the food?

A) By who was this food burned? B) By whom was that food burned?
C) By whom was the food burned? D) By whom is this food burned?
 
Answer & Explanation Answer: A) By who was this food burned?

Explanation:

By whom was the food burned?

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

0 2072