Step by step learning
Given:
try { System.out.print("In the try block"); } catch (IOException e) { System.out.print("In the IOException catch block"); }
What is the result?
Compilation error
In the try block
In the try block In the IOException catch block
Please log in or register to have a possibility to add comment.
Please log in or register to have a possibility to add comment.