santhi Bendapudu

Greenhorn
+ Follow
since Feb 07, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by santhi Bendapudu

Thanks to all for clearing things.
Hi,
How many String objects are created when we run the following code.
String s1,s2,s3,s4;
s1 = "Hello";
s2 = s1;
s3 = s2 + "Pal";
s4 = s3;
Answer is 3
please explain
Thanking you,
Santhi