What will be the output of the program? String x = new String("xyz"); String y = "abc"; x = x + y; How many String objects have been created?
Reveal answer
Fill a bubble to check yourself
What will be the output of the program? String x = new String("xyz"); String y = "abc"; x = x + y; How many String objects have been created?