Final answer:
Loops are control structures that allow code to repeat.
Step-by-step explanation:
Loops are control structures that allow code to repeat. They are used to perform repetitive tasks in a program.
One common type of loop is a for loop, which specifies the number of times the code should be repeated. Another type is a while loop, which repeats the code until a certain condition is met.