Questions

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

In the following passage some of the words have been left out. Read the passage carefully and select the correct answer for the given blank out of the four alternatives.

 

_____________ nearly eight decades, the women's movement __________ and debated the desirability and feasibility of a Uniform Civil Code, and has ended up ___________ a simple question — what is the value of uniformity? Is it for the "integrity of the nation" that uniformity in laws is required, as some judicial pronouncements ___________? If so, who exactly is the beneficiary? Which sections of people benefit from "integrity of the nation", that abstract entity which is not exactly _______ the top of your mind as your husband throws you out on the street?

 

that abstract entity which is not exactly _______ the top of your mind

A) in B) for
C) at D) of
 
Answer & Explanation Answer: C) at

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2186
Q:

n the following question, out of the four alternatives, select the alternative which will improve the bracketed part of the sentence. In case no improvement is needed, select "no improvement".

I wondered what one would have thought some 40 years ago if you (had said) you could heat liquid using a plastic container.

A) having said B)  had say
C) have saying 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 2185
Q:

Project Scope Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Scope Verification ?

Answer

I. Inputs



  • Project scope statement

  • WBS dictionary

  • Project scope management plan

  • Deliverables


II. Tools and Techniques



  • Inspection


III. Outputs



  • Accepted  deliverables

  • Requested changes

  • Recommended corrective actions

Report Error

View answer Workspace Report Error Discuss

0 2185
Q:

Which of these is an example of a labor law?

A) A town zones an area for residential buildings only B) A restriction on when a union may call a strike
C) A surplus of supply D) All of the above
 
Answer & Explanation Answer: B) A restriction on when a union may call a strike

Explanation:
Report Error

View Answer Report Error Discuss

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

6 2185
Q:

Who becomes World No. 1 ODI batswoman?

A) Mithali Raj B) M.M. Lanning
C) E.A. Perry D) Smriti Mandhana
 
Answer & Explanation Answer: D) Smriti Mandhana

Explanation:

Smriti Shriniwas Mandhana becomes World No. 1 ODI batswoman. In June 2018, the Board of Control for Cricket in India named her as the Best Women's International Cricketer.

Who_becomes_World_No._1_ODI_batswoman_1549256696.jpg image

Report Error

View Answer Report Error Discuss

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

1 2185
Q:

Who among the following won the Men’s Singles Title in the Australian Open Tennis Tournament, 2016?

 

A) Jamie Murray B) Bruno Soares
C) Novak Djokovic D) Andy Murray
 
Answer & Explanation Answer: C) Novak Djokovic

Explanation:

2016 Australian Open –Men's Singles. Novak Djokovic was the defending champion and successfully defended his title, defeating Andy Murray, 6–1, 7–5, 7–6 in arematch of the previous year's final, and the fourth Australian Open final between the pair.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

4 2185
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 2185