Question: 19
(Choose 1 answer)
What is the main difference between a while loop and a do...while loop?
A. while loop checks the condition before executing the loop body, do...while loop checks it after.
B. do...while loop runs only once, while loop can run multiple times.
C. while loop requires an increment statement, do...while does not.
D. There is no difference; they are identical in function.