InterviewSolution
Saved Bookmarks
| 1. |
Where exception are handled?(a) inside the program(b) outside the regular code(c) both inside or outside(d) main programI had been asked this question during an interview.My question comes from Catching Exceptions in chapter Derived Classes, Templates & Exception Handling in C++ of C++ |
|
Answer» CORRECT ANSWER is (b) outside the regular CODE The explanation: Exception are handled outside the regular code. |
|