Multiple choice for(int i = 0; i < 10; i++) How many times does "i<10" execute? 9 times 10 times 11 times compile time error Reveal answer Fill a bubble to check yourself C Correct answer Explanation In a for loop, the condition is checked at the start of every iteration and once more after the final increment when the condition becomes false. For i=0 to 9, it is checked 11 times (for i=0, 1, 2, 3, 4, 5, 6, 7, 8, 9, and finally for i=10).