C++ Exception handling concepts interview questions and answers

Explain how we implement exception handling in C++ - Exception handling in C++ is implemented by using the try{} and catch(){} statements.....
Explain terminate() and unexpected() function - terminate() is a library function which by default aborts the program....
Describe Exception handling concept with an example - Exceptions are certain disastrous error conditions that occur during the execution of a program.....
Illustrate Rethrowing exceptions with an example - Rethrowing an expression from within an exception handler can be done by calling throw....