A while loop's condition is false at its very first check. How many times does its body run?
Explanation
A while loop tests its condition before entering the body, so a false initial test permits zero iterations. The claim that the body must run once describes do...while, which places its test after the body.