Select The Statements Which Describe The Correct Usage Of #487
Select the statements which describe the correct usage of exception handling over conventional error handling approaches?
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 - Fundamentals of Exception Handling - Quiz No.1.
Select the statements which describe the correct usage of exception handling over conventional error handling approaches?
As errors can be ignored but exceptions cannot be ignored
Exception handling allows separation of program’s logic from error handling logic making software more reliable and maintainable
try – catch – finally structure allows guaranteed cleanup in event of errors under all circumstances
All of the mentioned