When a loop executes, the structure-controlling condition is ______________. Group of answer choices tested only if it is true, and not asked if it is false tested exactly once tested either before or after the loop body executes never tested more than once

Respuesta :

Baraq

Answer:

tested either before or after the loop body executes

Explanation:

When a loop executes, the structure-controlling condition is "tested either before or after the loop body executes."

This is evident in the fact that during loop execution, the control structure moves across the statements subsequently, should the statement be true, the loop execution continues until it becomes false, then the loop terminates.