0
Infinitely
1
Variable
do-while
while
for
goto
for loop
while loop
do-while loop
None of the above
none of the above
for (int i = 0; i < 10; i++)
for i = 0 to 10 step 1
for (i = 0; i < 10; i++)
for (i < 10; i++)
How many times will the following loop execute?
int j; for(j = 1; j <= 10; j = j-1) printf("INFOMAX");
Forever
Never
10
break
continue
return
None of these
All of the above
exit
Both (a) and (b)
if-else
None of the mentioned
do while
switch
;
:
,
=
Continue
Break
Return
resume
skip
continue statement
break statement
switch statement
if statement
It exits the current loop and continues with the next iteration
It terminates the current loop and transfers control to the next statement after the loop
It skips the current iteration and moves to the next iteration
It repeats the current iteration