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 the statements within the loop to be executed:
4. In what sequence are initialization, testing, and execution of the body done in a do-while loop?
5. Which of the following is not an infinite loop?
6. Which of the following statements is used to take control to the beginning of the loop?
7. How many '*' will this code print?
8. Multiple initialization is not possible in a for loop.
9. A for loop can be converted into an equivalent while loop.
10. Loops cannot be nested.