What will be the output of the program? for (int i = 0; i < 4; i += 2) { System.out.print(i + ); } System.out.println(i); /* Line 5 */
Reveal answer
Fill a bubble to check yourself
What will be the output of the program? for (int i = 0; i < 4; i += 2) { System.out.print(i + ); } System.out.println(i); /* Line 5 */