which of the following go out of the loopo if expn 2
becoming false
a.while(expn 1){...if(expn 2)continue;}
b.while(!expn 1){if(expn 2)continue;...}
c.do{..if(expn 1)continue;..}while(expn 2);
d.while(!expn 2){if(expn 1)continue;..}

Answer Posted / jai

c) Since expn2 becoming false will terminate do-while loop.

Is This Answer Correct ?    10 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is c programming structure?

620


Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result

1469


What is getch () for?

677


write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.

2455


What are loops c?

616






Where are c variables stored in memory?

599


How to find a missed value, if you want to store 100 values in a 99 sized array?

816


Why clrscr is used in c?

587


Tell me can the size of an array be declared at runtime?

599


Write a program to check armstrong number in c?

635


Explain why C language is procedural?

770


Explain the properties of union.

609


What is the value of h?

593


Write a program to reverse a given number in c?

600


If you know then define #pragma?

676