Given this code segment,
try {
// statements appear here...
}
catch (IOException ex) {
System.out.println(“I/O error!”);
}
catch (NumberFormatException ex) {
System.out.println(“Bad input!”);
}
finally {
System.out.println(“Finally!”);
}
System.out.printIn(“Done!”);
a. what will be printed if an FileNotFoundException occurs in the try block?
b. what will be printed if anArraylndexOutOfBounds occurs in the try block?
c. what will be printed if no exception occurs in the try block?
d. what would happen if the followingcatch clause was added as the first catchclause in the code?
catch (Exception ex) {
System.out.println(“Error!”);
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.