Home » JAVA Programming » Exceptions » Question
  1. Which of these statements is incorrect?
    1. try can be followed by both catch and finally block
    2. try need not to be followed by anything
    3. try block need not to be followed by catch block
    4. try block can be followed by finally block instead of catch block
    5. None of these
Correct Option: B

try must be followed by either catch or finally block.



Your comments will be displayed only after manual approval.