123456789101112131415



Question 1: What is the result of the following:

String stringA = " Wild " ;
String stringB = " Irish ";
String stringC = " Rose ";
String result = stringA.trim() + stringB + stringC.trim();

1. "WildIrishRose"
2. " Wild Irish Rose "
3. " Wild Irish Rose"
4. "Wild Irish Rose"