Questions

Q:

Explain compiler?

Answer

compiler is used to translate the high-level language program into machine code at a time. It doesn't require special instruction to store in a memory, it stores automatically. the execution time is less compared interpreter.


A compiler is a program that translates a source program written in some high-level programming langualge (such as Java) into machine code for some computer architecture (such as the Inter Pentium archiecture).

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2194
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 2194
Q:

The first Olympiad was held in Greece in the year

Answer

776 BC

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2194
Q:

Improve the bracketed part of the sentence. The hapless kid (cut a sorry figure) in his first performance on the stage.

A) made a sorry figure B) made a sad figure
C) cut a sorry face D) no improvement
 
Answer & Explanation Answer: D) no improvement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2194
Q:

In the following question, choose the word which is opposite in meaning to the give word and click the button corresponding to it.

GRACEFUL

A) AWKWARD B) ELEGANT
C) GRACIOUS D) UGLY
 
Answer & Explanation Answer: A) AWKWARD

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2194
Q:

In the following question, out of the given four alternatives, select the one which is opposite in meaning of the given word.

 

Tyro

 

A) Beginner B) Recruit
C) Virgin D) Professional
 
Answer & Explanation Answer: D) Professional

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2194
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

 

A drop in the ocean

 

A) Even a small gesture means a lot to a needy person. B) To lose someone in a huge crowd.
C) A scolding which has no effect on a stubborn person. D) A very small amount compared with what is needed or expected.
 
Answer & Explanation Answer: D) A very small amount compared with what is needed or expected.

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2194
Q:

In the following question, out of the given four alternatives, select the one which is opposite in meaning of the given word.

Consanguinity

A) Affinity B) Kin
C) Race D) Disunion
 
Answer & Explanation Answer: D) Disunion

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2193