Home » Java Programming » Flow Control

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 ) ; } }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!