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.