Respuesta :

Answer:

Loop

Explanation:

Great question, it is always good to ask away and get rid of any doubts that you may be having.

Programmers use a(n) loop when they need the computer to repeatedly process one or more program instructions until some condition is met, at which time the loop ends.

Loops repeat a certain set of instructions until a certain condition is acuired and then exit out of the loop. There are a couple of different types of loops such as For Loop, While Loop, and Do-While loop. Each repeats a set of instructions but for a different set of times.

For Loops repeat for a fixed amount of Times or until the condition is met and it breaks out of the loop. Meanwhile,  While and Do-While loops keep repeating until the condition is me, but the Do-While checks the condition at the end of the loop.

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

ACCESS MORE