0 / 60 seg.

How does the StringBuilder handle the insertion of a substring?

StringBuilder sb = new StringBuilder("Java");
sb.insert(4, " programming");
System.out.println(sb.toString());