Where can we initialize the loop variable for a while loop?
Inside the loop
After the loop
Before the loop
Any where in the loop
How many times the initialization expression is executed in a loop.
Twice
More than twice
Once
Many
Which jump statement enables the program to skip over part of the code?
return
skip
break
continue
Where is a variable access possible?
Within the entire program
Only in the block where it has been declared
Anywhere
Which of the following loop gatheres all the loop control elements in one place?
while
for
do
do while
Which of the following loop type proceeds with executing loop body first?
Exit controlled loop
Entry controlled loop
Pre-tested loop
Conditional loop
Which of the following is a bottom-tested loop?
for loop
do while loop
infinite loop
Where did the update expression execute?
Beginning of the loop
Body of the loop
Middle of the loop
End of the loop