why would you use a repeat block in a project?\nto run an attached stack of blocks when an event designated…

why would you use a repeat block in a project?\nto run an attached stack of blocks when an event designated by the parameter of the block occurs\nto repeatedly check a boolean condition, and not move to the next block until the condition reports true\nto repeat the behaviors inside of it forever\nto repeat behaviors a specific number of times
Answer
Brief Explanations:
A [Repeat] block in programming is typically used to execute a set of instructions multiple times. The most common use - case is to repeat behaviors a specific number of times. The first option describes an event - triggered action, not a repeat function. The second option describes a while - loop like behavior. The third option of repeating forever is not the general use of a standard [Repeat] block.
Answer:
To repeat behaviors a specific number of times