Java - Strings and String Handling
What will be printed by this code?
StringBuffer sb = new StringBuffer("Hello");
sb.insert(5, " World");
System.out.println(sb.toString());