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

In Microsoft Word, ____________ are small dots, squares, dashes or graphics that are often seen before the text.

A) Indentation B) Bullets
C) Numbering D) Tabs
 
Answer & Explanation Answer: B) Bullets

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer

6 2037
Q:

What is the minimum age for the post of the chief minister of any state?

A) 35 yrs B) 21 yrs
C) 25 yrs D) 45 yrs
 
Answer & Explanation Answer: C) 25 yrs

Explanation:

The minimum age for the post of the chief minister of any state is 25 years.

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

Improve the bracketed part of the sentence.
It was so hot during the concert that some spectators passed (out).

A) away B) by
C) over D) no improvement
 
Answer & Explanation Answer: D) no improvement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE

1 2037
Q:

What is relative path and absolute path?

Answer

Absolute path-- Exact path from root directory.

Relative path-- Relative to the current path.

Report Error

View answer Workspace Report Error Discuss

1 2036
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 2035
Q:

What document is the supreme law of the land?

A) The constitution B) The senate
C) The bill D) All of the above
 
Answer & Explanation Answer: A) The constitution

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2035
Q:

German Silver contains

A) 100% pure silver B) 10% silver
C) 1% silver D) 0% silver
 
Answer & Explanation Answer: D) 0% silver

Explanation:

German Silver is an alloy of copper, nickel and zinc. It is composed of 60% copper, 20% nickel and 20% zinc. Due to its white-silverish appearance it is named as german silver but it contains no silver in it.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

0 2034