Multiple choice technology programming languages Output for the below code : int i = 10; while (++i <= 10) { i++; } System.out.print(i); 10 11 12 Line 5 will be never reached Reveal answer Fill a bubble to check yourself B Correct answer Explanation The while condition uses pre-increment (++i): i becomes 11 first, then 11 <= 10 is evaluated as false. The loop body never executes, and i remains 11. The output is '11'.