Sreeni Aluru

Greenhorn
+ Follow
since Apr 29, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Sreeni Aluru

Just for Clarification---
system.out.print("firststringobject" + "secondstringobject");
-- how many objects it creates?
3 or 1 or none

String s = new String("first");
How many objects the following line creates?.
s.concat(" second");
1 or 2 or none
Thanks.
String s = new String("thisisthefirststringobject");
--how many string objects the above statement creates?.
two or one
Thanks.