Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question: 4 you need to write a program that has karel move 6 times and…

Question

question: 4 you need to write a program that has karel move 6 times and then put a ball. which control structure do you need to use? for loop while loop if statement if/else statement none of these

Explanation:

Brief Explanations

A for - loop is used when you know the exact number of iterations in advance. Here, Karel needs to move 6 times, which is a fixed number of repetitions. A while - loop is used when the number of iterations is not known beforehand and depends on a condition. If statements and if/else statements are used for conditional execution, not for repeated execution.

Answer:

A. For loop