Answer:
A) a while loop.
Step-by-step explanation:
A while loop is a programming construct that continues to repeat until the expression becomes false.
While loops are conditional statement that executes as long as the conditions remain true. They are used to automate tasks that are otherwise repetitive and would require redundant computing time to do them manually.