Chapter 8 Exception Handling MCQs 9 min Score: 0 Attempted: 0/9 Subscribe 1. When does Exceptions in Java arise in code sequence? (A) None of the mentioned (B) Compilation Time (C) Can Occur Any Time (D) Run TimeShow All Answers 2. Which of these keywords is not a part of exception handling? (A) try (B) finally (C) catch (D) thrownShow All Answers 3. Which of these keywords must be used to monitor for exceptions? (A) try (B) throw (C) catch (D) finallyShow All Answers 4. In which of the following package does the Exception class exist? (A) java.file (B) java.util (C) java.io (D) java.langShow All Answers 5. Which of these is a super class of all errors and exceptions in the Java language? (A) Catchable (B) Throwable (C) RuntimeExceptions (D) None of the aboveShow All Answers 6. Which of these keywords is used to manually throw an exception? (A) finally (B) catch (C) throw (D) tryShow All Answers 7. Which of these classes is related to all the exceptions that can be caught by using catch? (A) Error (B) All of the mentioned (C) RuntimeException (D) ExceptionShow All Answers 8. Which of these classes is related to all the exceptions that cannot be caught? (A) Error (B) Exception (C) RuntimeException (D) All of the mentionedShow All Answers 9. Which of these handles the exception when no catch is used? (A) finally (B) Default handler (C) throw handler (D) Java runtime systemShow All Answers