Q. When the condition of the do-while loop is false, how many times will it execute the code?
β
Correct Answer: (B)
1
Explanation: The do-while loop is an exit-controlled loop, hence it will run at least once, even if the condition becomes false.