Which of the following are checked exceptions? (Choose all that apply)
A, C.
Exception, which is a checked exception, is the base class for exceptions. A is correct.
B, D, and E extend RuntimeException directly or indirectly and therefore are unchecked exceptions.
F is a throwable and not an exception, and so should not be caught or declared.