-
Which of these statements is incorrect?
-
- try can be followed by both catch and finally block
- try need not to be followed by anything
- try block need not to be followed by catch block
- try block can be followed by finally block instead of catch block
- None of these
Correct Option: B
try must be followed by either catch or finally block.