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 expressions are optional in for loop?
Initialization expression
test expression
update expression
all the above
Which of the following tests loop condition before loop body execution?
Pre tested loop
Post-tested loop
Bottom-tested
Empty loop
Which statement is used to transfer program control within a function unconditionally?
Jump statements
Looping statement
Conditional statement
Branching statement
What do you mean by a loop that contain another loop in its body?
Infinite loop
Top-tested loop
Nested loop
Which jump statement enables the program to skip over part of the code?
return
skip
break
continue
Where did the update expression execute?
Beginning of the loop
Body of the loop
Middle of the loop
End of the loop