Java - Strings and String Handling
What will be printed by this code?
String s = "Hello";
StringBuilder sb = new StringBuilder(s);
sb.append(" World");
System.out.println(s);
System.out.println(sb);