

MCQOPTIONS
Saved Bookmarks
1. |
What will s2 contain after following lines of code? StringBuffer s1 = "one"; StringBuffer s2 = s1.append("two") |
A. | one |
B. | two |
C. | onetwo |
D. | twoone |
Answer» D. twoone | |