The loop in Option A starts with i = 0 and continues as long as i is strictly less than 10, incrementing by 1 each time. This executes the loop body for values 0 through 9, which is exactly 10 iterations. Option C only runs 9 times, and Option D runs 11 times.