Home » Java Programming » Java.lang Class

What will be the output of the program? class Q207 { public static void main(String[] args) { int i1 = 5; int i2 = 6; String s1 = "7"; System.out.println(i1 + i2 + s1); /* Line 8 */ } }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!