InterviewSolution
Saved Bookmarks
| 1. |
When throws keyword is used? |
|
Answer» If a method does not handle a checked exception, the method must declare it using the throwskeyword. The throws keyword appears at the end of a method's signature. |
|