Which of the following are unchecked exceptions?
Choose all that apply
A, B, D, E.
ArrayIndexOutOfBoundsException, IllegalArgumentException, and NumberFormatException are runtime exceptions.
Sorry, you have to memorize them.
Any class that extends RuntimeException is a runtime (unchecked) exception.
Classes that extend Exception but not RuntimeException are checked exceptions.