6. 

Which four can be thrown using the throw statement?

  1. Error
  2. Event
  3. Object
  4. Throwable
  5. Exception
  6. RuntimeException

A. 1, 2, 3 and 4
B. 2, 3, 4 and 5
C. 1, 4, 5 and 6
D. 2, 4, 5 and 6

7. 

Which statement is true?

A. A try statement must have at least one corresponding catch block.
B. Multiple catch statements can catch the same class of exception more than once.
C. An Error that might be thrown in a method must be declared as thrown by that method, or be handled within that method.
D. Except in case of VM shutdown, if a try block starts to execute, a corresponding finally block will always start to execute.