Multiple choice technology programming languages i=0 while i<3 print i, "\n" break end Output = 0 True False Reveal answer Fill a bubble to check yourself A Correct answer Explanation The while loop starts with i=0. It prints 0, then immediately hits 'break', which exits the loop. So only '0' is printed, matching the claimed output. The loop condition never gets re-evaluated.