Final answer:
The body of a pretest loop like a while loop will not execute if the continuation condition is initially false.
Step-by-step explanation:
The body of a pretest loop will never be executed if the continuation condition were initially false. A pretest loop, such as a while loop, checks the condition at the beginning of the loop before the loop body runs. If the condition is false on the first check, the loop body does not execute, and the program continues with the statements after the loop.