MCQOPTIONS
Saved Bookmarks
| 1. |
#include <iostream>using namespace std;int main(){ try { throw 10; } catch (...) { cout << "Default Exceptionn"; } catch (int param) { cout << "Int Exceptionn"; } return 0;}13.What is the output of this program? |
| A. | Inside try Exception Caught After throw After catch |
| B. | Inside try Exception Caught After catch |
| C. | Inside try Exception Caught |
| D. | Inside try After throw After catch |
| Answer» C. Inside try Exception Caught | |