Choose The Correct Statement Which Makes Exception Handling #505
Choose the correct statement which makes exception handling work in C#.NET?
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Indexers and Exception Handling - Implementation of Exception Handling - Quiz No.1.
Choose the correct statement which makes exception handling work in C#.NET?
.Net runtime makes search for the exception handler where exception occurs
If no exception is matched, exception handler goes up the stack and hence finds the match there
If no match is found at the highest level of stack call, then unhandledException is generated and hence termination of program occurs
All of the mentioned