Home »
MCQs »
C++ MCQs
Which of the following is an exit control loop?
86. Which of the following is an exit control loop?
- While Loop
- Do While loop
- For loop
- None of the above
Answer: B) Do While loop
Explanation:
The do-while loop is an entry control loop, in the "while" loop we need to check the condition before executing the loop body.