prashanth


{ City } karimnagar
< Country > india
* Profession *
User No # 68081
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 40
Users Marked my Answers as Wrong # 3
Questions / { prashanth }
Questions Answers Category Views Company eMail




Answers / { prashanth }

Question { TCS, 7295 }

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

answer: c

here in do-while:
fist the statements inside the block gets executed.then
when it checks the condition ,it will be come out of loop
because conditions goes wrong

Is This Answer Correct ?    3 Yes 0 No

Question { TCS, 6629 }

define c


Answer

C is a general purpose computer programming language which
can be used write programs for performing various types of
tasks on computer.

Is This Answer Correct ?    37 Yes 3 No