What will s2 contain after following lines of code? String s1 = one; String s2 = s1.concat(two);
Answer options
A
one
B
onetwo
C
twoone
D
two The string "two" referred by s2 is "concatenated to" the string "one" referred by s1.
Correct answer: one
Explanation
Correct answer: one.