Home »
MCQs »
C++ MCQs
Which of the following loop, in which we have to execute the body of the loop before checking the condition?
88. Which of the following loop, in which we have to execute the body of the loop before checking the condition?
- Do While loop
- For loop
- While loop
- None of the above
Answer: A) Do While loop
Explanation:
In the Do-while loop, we have to execute the body of the loop before checking the condition.