Java - Strings and String Handling
What is the output of the following code?
StringBuilder sb = new StringBuilder("Code");
sb.append("Test");
sb.delete(0, 4);
System.out.println(sb);