Home » Java Programming » Java.lang Class

What will be the output of the program? public class StringRef { public static void main(String [] args) { String s1 = "abc"; String s2 = "def"; String s3 = s2; /* Line 7 */ s2 = "ghi"; System.out.println(s1 + s2 + s3); } }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!