The process of transferring the program control from where the exception was thrown to the catch block is known as _______.
- Throwing
- Handling
- Propagation
- Initialization
Propagation refers to the process where after an exception is thrown, it travels up the call stack until it's caught by an appropriate catch block or, if uncaught, the program terminates.
Loading...
Related Quiz
- Which method will you use to write a single character to the file stream in C++?
- Which of the following is not a type of iterator in C++ STL?
- What is the impact of using a friend function on encapsulation in C++?
- How does C++ handle the virtual table in a multiple-inheritance scenario?
- You are developing a financial application where precision is crucial. Which arithmetic operation could potentially introduce errors due to floating-point representation?