

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following statements are correct about exception handling in C#.NET? If our program does not catch an exception then the .NET CLR catches it. It is possible to create user-defined exceptions. All types of exceptions can be caught using the Exception class. CLRExceptions is the base class for all exception classes. For every try block there must be a corresponding finally block. |
A. | 1 and 2 only |
B. | 1, 2 and 3 only |
C. | 4 and 5 only |
D. | All of the above |
E. | None of the above |
Answer» C. 4 and 5 only | |