What is a try block in java?
Answers
Answered by
1
The try block contains set of statements where an exception can occur. A try blockis always followed by a catch block, which handles the exception that occurs in associated try block. A try block must be followed by catch blocks or finally block or both.
UdayangshuRoy:
Ok thanks...!!
Answered by
5
The try block contains set of statements where an exception can occur.A try block is always followed by a catch block,which handles the exception that occurs in associated try block.A try block must be followed by catch blocks or finally block or both.
Similar questions