Which statement is true regarding exception handling in Java?
1
A catch block can catch multiple types of exceptions using a single parameter.
2
A finally block can exist without a try block.
3
It is mandatory to handle checked exceptions with either a catch block or a throws declaration.
4
An exception caught in a catch block cannot be rethrown.
5
Question Not Attempted