Which of the following tests loop condition before loop body execution?
Pre tested loop
Post-tested loop
Bottom-tested
Empty loop
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
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 jump statement enables the program to skip over part of the code?
return
skip
break
continue
Which of the following is known as loop?
Iteration statement
Branching statement
Conditional statement
Unconditional statement
How many times the initialization expression is executed in a loop.
Twice
More than twice
Once
Many
Which statement is used to transfer program control within a function unconditionally?
Jump statements
Looping statement