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 Time
2. Which of these keywords is not a part of exception handling?
(A) try
(B) finally
(C) catch
(D) thrown
3. Which of these keywords must be used to monitor for exceptions?
(A) try
(B) throw
(C) catch
(D) finally
4. In which of the following package does the Exception class exist?
(A) java.file
(B) java.util
(C) java.io
(D) java.lang
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 above
6. Which of these keywords is used to manually throw an exception?
(A) finally
(B) catch
(C) throw
(D) try
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) Exception
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 mentioned
9. Which of these handles the exception when no catch is used?
(A) finally
(B) Default handler
(C) throw handler
(D) Java runtime system