Which keywords are required with a try statement?
C.
A try statement requires a catch or a finally block.
Without one of them, the code will not compile; therefore.
Option D is incorrect.
A try statement can also be used with both a catch and finally block.
Option C is the correct answer.
finalize is not a keyword, but a method inherited from java.lang.Object.