InterviewSolution
Saved Bookmarks
| 1. |
Which keyword is used to handle the expection?(a) try(b) throw(c) catch(d) handler |
|
Answer» Correct answer is (c) catch Best explanation: When we found a exception in the program, We need to throw that and we handle that by using the catch keyword. |
|