InterviewSolution
Saved Bookmarks
| 1. |
Which of the keywords are used for the block to be examined for exceptions?(a) try(b) catch(c) throw(d) checkThe question was posed to me in class test.My question comes from Try & Catch in Detail topic in portion Indexers and Exception Handling of C# |
|
Answer» RIGHT ANSWER is (a) TRY Easy EXPLANATION - try is used for the block that needs to be checked for the exception. |
|