Company: Deloitte USI_5sep
Difficulty: easy
Consider the code snippet given below: ```java StringBuilder sb = new StringBuilder("ABCDE"); sb.delete(1, 3); System.out.println(sb); ``` What will be the output?