Java - Strings and String Handling
Given this code:
What is the output?
StringBuilder sb = new StringBuilder("abc");
sb.insert(1, "123");
sb.delete(2, 4);
System.out.println(sb);What is the output?
