Which one of the following keyword is used in conjunction with an Exception object?
A
throws
B
exception
C
throw
D
final
Correct Answer: throw
The throw keyword is used in conjunction with an Exception object. It halts the execution of the current method and passes responsibility for handling the error back to the calling code.