Answer:
C. it saves time when writing code
Explanation:
A repeat command (also known as a loop) is a programming statement that allows a block of code to be executed repeatedly for a specified number of times. When programming a turtle, a repeat command can be very helpful because it allows the same set of commands to be executed multiple times without having to write them out repeatedly. This can save a lot of time and make the code much shorter and easier to read.
For example, if a programmer wants a turtle to draw a square, instead of writing out the commands to move the turtle forward, turn right, move forward, turn right again, and so on, they can use a repeat command to tell the turtle to perform those same commands four times. This makes the code much more efficient and easier to read, and can help prevent errors that might occur if the programmer had to write out the same commands multiple times.
Answer:
c
Explanation: