The starter code has Karel move 9 times. Which of the following for loops would have Karel move 4 times? for (var i = 0; i < 4; i++) { move(); } for (var i = 0; i < 9; i++) { move(); } for (var i = 4; i < 4; i++) { move(); } o for (var i = 0; i = 4; i++) { move(); } Check​

The starter code has Karel move 9 times Which of the following for loops would have Karel move 4 times for var i 0 i lt 4 i move for var i 0 i lt 9 i move for v class=

Respuesta :

Answer:

Your answer is A, you know this because of the "i < 4" this means so long as "i"'s value is less than 4 the loop will run, every time the loop runs "i" increases.

Explanation: