Home » JAVA Programming » Exceptions » Question
  1. A single try block must be followed by which of these?
    1. try
    2. finally
    3. catch
    4. finally & catch
    5. 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.



Your comments will be displayed only after manual approval.