What will be the output of the program?
public class Test { public static void main(String [] args) { int I = 1; do while ( I < 1 ) System.out.print(I is + I); while ( I > 1 ) ; } }
Reveal answer
Fill a bubble to check yourself
What will be the output of the program?
public class Test { public static void main(String [] args) { int I = 1; do while ( I < 1 ) System.out.print(I is + I); while ( I > 1 ) ; } }