Which of the following loop type proceeds with executing loop body first?
Exit controlled loop
Entry controlled loop
Pre-tested loop
Conditional loop
Which jump statement enables the program to skip over part of the code?
return
skip
break
continue
Which labeled statement will continue the named loop instead of the innermost loop?
Labeled continue
Labeled break
Unlabeled break
Labeled return
Where is a variable access possible?
Within the entire program
Only in the block where it has been declared
Inside the loop
Anywhere
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