Advanced Control Flow

1. The execution of a loop typically starts with:
2. The break statement is used to exit from:
3. A do-while loop is useful when we want that the statements within the loop must be executed
4. In what sequence the initialization, testing and execution of body is done in a do-while loop
5. Which of the following is not an infinite loop
6. Which of the following statement is used to take the control to the beginning of the loop?
7. How many * this code will print:
8. Multiple intialization is not possible in for loop
9. For loop can be converted into equivalent while loop
10. Loop can not be nested