Which control structure evaluates an expression at the bott1om of the loop
Answers
Answered by
2
Answer:
The do while Loop
Explanation:
The do-while loop repeatedly executes a block of statements until a specified boolean expression evaluates to false. The do-while loop tests the condition at the bottom of the loop. This allows for the do-while loop statement block to run at least on time before the termination condition is tested.
Similar questions