adplus-dvertising
frame-decoration

Question

What is the output of this program?
    #include <iostream>
    using namespace std;
    #include <cstdlib>
    #include <exception>
    void Funct()
    {
        cout << "Funct() was called by terminate()." << endl;
        exit(0);
    }
    int main()
    {
        try
        {
            set_terminate(Funct);
            throw "Out of memory!";
        }
        catch(int)
        { 
            cout << "Integer exception raised." << endl; 
        }
        return 0;
    }

a.

Integer exception raised

b.

Funct() was called by terminate()

c.

Integer exception not raised

d.

none of the mentioned

Answer: (b).Funct() was called by terminate()

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?

Similar Questions

Discover Related MCQs

Q. What function will be called when we have a uncaught exception?

Q. What will not be called when the terminate() is arised in constructor?

Q. What will happen when we move try block far away from catch block?

Q. What will happen if an excpetion that is thrown may causes a whole load of objects to go out of scope?

Q. What operation can be performed by destructor?

Q. What is the main purpose of the constructor?

Q. Why is it expensive to use objects for exception?

Q. Which alternative can replace the throw statement?

Q. What are the disadvantages if use return keyword to return error codes?

Q. What is most suitable for returning the logical errors in the program?

Q. What is the use of RAII in c++ programing?

Q. How many levels are there in exception safety?

Q. Pick out the correct statement for error handling alternatives.

Q. What will happen when an exception is not processed?

Q. Which header file is used to declare the standard exception?

Q. Where are standard exception classes grouped?

Q. How many types of standard exception are there in c++?

Q. Which of the following is best to include under try block?

Q. What are the perdefined exceptions in c++?

Q. A default catch block catches