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

Which organization is an interest group?

A) The National Rifle Association B) The National Right to Life organization
C) The National Organization for Women D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

An interest group is an organization whose members share common concerns and try to influence government policies affecting those concerns. Interest groups are also known as lobbies.

Report Error

View Answer Report Error Discuss

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

2 2053
Q:

In Geography, who propounded the theory of convectional current Hypothesis?

A) Carl Ritter B) Immanuel Kant
C) Arthur Holmes D) Arnaldo Faustini
 
Answer & Explanation Answer: C) Arthur Holmes

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2053
Q:

The book 'Sudhir Sukta' was written by

A) Vishnu Wagh B) Nazir Ahmad Wani
C) Andrea Levy D) Tian Er
 
Answer & Explanation Answer: A) Vishnu Wagh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2052
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 2052
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 2052
Q:

The idea of cache memory is based on___.

A) on the heuristic 90-10 rule B) on the property of locality of reference
C) on the fact that references generally tend to cluster D) All options are correct
 
Answer & Explanation Answer: B) on the property of locality of reference

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

14 2052
Q:

All the organisms on your campus make up

A) a community B) a group
C) an ecosystem D) None of the above
 
Answer & Explanation Answer: A) a community

Explanation:

All the organisms on your campus make up a community.

Report Error

View Answer Report Error Discuss

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

2 2052