A single try block must be followed by which of these?
try
finally
catch
finally & catch
All of above
Correct Option: D
try block can be followed by any of finally or catch block, try block checks for exceptions and work is performed by finally and catch block as per the exception.