Java - Strings and String Handling
Given
String s = "Hello"; and String t = s;, what happens if you do t = t + " World";? What is the value of s afterwards?