Multiple choice How does a FOR loop start? for (i = 0; i <= 5) for i = 1 to 5 for (i <= 5; i++) for (i = 0; i <= 5; i++) Reveal answer Fill a bubble to check yourself D Correct answer Explanation A standard for loop consists of three parts: initialization, condition, and increment, all inside parentheses.