Home / C# Programming / Exception Handling :: Discussion

Discussion :: Exception Handling

  1. Which of the following statements are correct about exception handling in C#.NET?

    1. try blocks cannot be nested.
    2. In one function, there can be only one try block.
    3. An exception must be caught in the same function in which it is thrown.
    4. All values set up in the exception object are available in the catch block.
    5. While throwing a user-defined exception multiple values can be set in the exception, object.

  2. A.
    1 only
    B.
    1 and 2 only
    C.
    3 only
    D.
    4 and 5 only
    E.
    All of the above

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    No answer description available for this question.


Be The First To Comment