Q. Which of these is an exit-controlled loop?
β
Correct Answer: (C)
do....while
Explanation: The do...while loop check for a condition after executing the loop block once. Hence, it is called an exit-controlled loop.