12345678910



Question 1: A method must do either of two things with a checked exception. What are those two things?
1. (1) Ignore the exception, or (2) check the exception.
2. (1) Handle the exception in a catch{} block, or (2) return the exception to the sender.
3. (1) Handle the exception in a catch{} block, or (2) throw the exception to the method that called this method.
4. (1) Handle the exception in a catch{} block, or (2) handle the exception in a try{} block,