InterviewSolution
Saved Bookmarks
| 1. |
Since which version of java is multiple exception catch was made possible?(a) Java 4(b) Java 5(c) Java 6(d) Java 7 |
|
Answer» The correct answer is (d) Java 7 Best explanation: None of the languages used to support multiple exception catch in a single catch block. Since java 7 the feature was added to catch more than one exceptions in one catch block. |
|