57.1k views
3 votes
__________ are control structures that allow code to repeat.

a. Loops
b. If statements
c. Assignments
d. Objects

User Clamum
by
8.3k points

1 Answer

3 votes

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.

User Alexander Kim
by
8.5k points