MCQOPTIONS
Saved Bookmarks
| 1. |
#include <iostream>using namespace std;int main(){ try { throw 'b'; } catch (int param) { cout << "Int Exception"; } catch (...) { cout << "Default Exception"; } cout << "After Exception"; return 0;}12.What is the output of this program? |
| A. | Default Exception |
| B. | Int Exception |
| C. | Compiler Error |
| D. | None of the above |
| Answer» D. None of the above | |