InterviewSolution
Saved Bookmarks
| 1. |
Which of these Exception handlers cannot be type parameterized?(a) catch(b) throw(c) throws(d) all of the mentioned |
|
Answer» Right choice is (d) all of the mentioned The explanation is: we cannot Create, Catch, or Throw Objects of Parameterized Types as generic class cannot extend the Throwable class directly or indirectly. |
|