Multiple choice technology programming languages

IOexception is a unchecked exception (T/F)

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

IOException and its subclasses are CHECKED exceptions in Java, meaning they must be declared or caught. Only RuntimeException and Error subclasses are unchecked. The statement that IOException is unchecked is False, making the claimed answer correct.