1.

How Many Objects Are In The Memory After The Exaction Of Following Code Segment?

Answer»

STRING str1 = "ABC";

String str2 = "XYZ";

String str1 = str1 + str2;

There are 3 OBJECTS.

String str1 = "ABC";

String str2 = "XYZ";

String str1 = str1 + str2;

There are 3 Objects.



Discussion

No Comment Found