What is the result of the following code?
StringBuilder b = "123456";
b.append(4).deleteCharAt(3).delete(3, b.length() - 1);
System.out.println(b);
F.
The first line does not compile because you cannot assign a String to a StringBuilder.
If that line were StringBuilder b = new StringBuilder("123456"), the code would compile.