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 / bipin chandra sai.s

ans is d,bcoz d is only the loop statement in the option

Is This Answer Correct ?    0 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what standard functions are available to manipulate strings?

615


why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???

1524


write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)

1629


Does c have class?

615


What are dangling pointers in c?

650






What are the types of unary operators?

667


What is a macro?

661


Tell me when would you use a pointer to a function?

613


How many types of sorting are there in c?

618


What is wild pointer in c?

613


What is the difference between declaring a variable and defining a variable?

726


Why does not c have an exponentiation operator?

631


What is logical error?

605


How to compare array with pointer in c?

627


i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none

650