In which loop, the test expression is evaluated before exiting the loop?
entry controlled
for
while
do-while
In which loop, all the loop control elements are gathered in one place?
exit controlled
do while
Which type of loop does not contain any statement in its loop-body?
for loop
empty loop
while loop
infinite loop
Which of the following is known as the driver function in the programe?
main()
print statement
selection construct
null statement
Which statement is executed when there is no match is found ?
Break
else
case
default
What type of test cannot be handled by switch?
Integer test
char test
real test
floating point test
Which function is used to break out of the program?
continue
exit()
skip
What type of statement is break in C++?
selection
null
jump
iteration
What will occur when a break is missing in case statement?
fall through
end of switch
exit out of the case
none of these
Which statement is used to reach the end of switch statement?
break
exit