Asked by Chris Leggio on Apr 26, 2024

verifed

Verified

The ____ statement literally loops back on itself to recheck the expression until it evaluates to 0 (becomes false) .

A) for
B) switch
C) do-while
D) while

Expression

A combination of variables, constants, and operators that the programming language evaluates to produce a value.

  • Recognize syntax and construct of while, do-while, and for loops.
verifed

Verified Answer

JI
Jilien IrigoyenApr 28, 2024
Final Answer :
D
Explanation :
The while statement is designed to loop back and recheck its conditional expression after each iteration, continuing this process until the condition evaluates to false (0).