Say you want to write a program to have Karel put down 300 tennis balls. Which control structure would you use?
If statement
While loop
For loop
Nested while loop
1 answer
A For loop would be the most appropriate control structure to use in this scenario. A For loop allows you to iterate a specific number of times, which fits the requirement of Karel putting down 300 tennis balls.