How many String objects are created by the following code?
String x = new String(\"xyz\"); String y = \"abc\"; x = x + y;
I have visited ma
The answer is 5