What is the name for a programming structure that repeats a sequence of instructions? A. A condition
B. A variable
C. A loop
D. A function call
What is the name for a programming structure that repeats a sequence of instructions? A. A condition
B. A variable
C. A loop
D. A function call
The correct answer is C. A loop.
A loop is a programming structure that allows you to repeat a sequence of instructions multiple times until a certain condition is met. This is useful for tasks that require repetitive actions, like iterating through items in a list or executing code until a specific criterion is fulfilled.