Home » JAVA Programming » Exceptions » Question
  1. Which of these keywords must be used to handle the exception thrown by try block in some rational manner?
    1. throw
    2. catch
    3. finally
    4. try
    5. None of these
Correct Option: B

If an exception occurs within the try block, it is thrown and cached by catch block for processing.



Your comments will be displayed only after manual approval.