What is the result of the following operation involving StringBuilder?
StringBuilder sb = new StringBuilder("Hello");
sb.append(" World").delete(5, 6);
System.out.println(sb.toString());
What is the result of the following operation involving StringBuilder?
StringBuilder sb = new StringBuilder("Hello");
sb.append(" World").delete(5, 6);
System.out.println(sb.toString());