Answer:
Posttest
Step-by-step explanation:
A loop in programming is the continuous execution of a specific task to a determined number of times with a given condition. It is a written line or lines of code that is logical coded to repeat execution for multiple but fixed number of time. There are majorly two types of loops in programming, they are,
1. Posttest loop statement.
2. Pretest loop statement.
The posttest loop statement is written to execute lines of code at least once, following a condition, for which it evaluates the condition after the code is executed.
The pretest loop statement also execute the code with a condition, but evaluates the condition before the code is executed.