Where is a variable access possible?
Within the entire program
Only in the block where it has been declared
Inside the loop
Anywhere
Which of the following is known as loop?
Iteration statement
Branching statement
Conditional statement
Unconditional statement
Which labeled statement will continue the named loop instead of the innermost loop?
Labeled continue
Labeled break
Unlabeled break
Labeled return
Where did the update expression execute?
Beginning of the loop
Body of the loop
Middle of the loop
End of the loop
What do you mean by a loop that contain another loop in its body?
Infinite loop
Top-tested loop
Nested loop
Empty loop
Which of the following loop gatheres all the loop control elements in one place?
while
for
do
do while