⟩ What is Ouptut Iterator?
They write values in the forward movement. They can be incremented and dereferenced.
They write values in the forward movement. They can be incremented and dereferenced.
Throwing an unhandled exception causes standard library function _______________ to be invoked. a. stop() b. aborted() c. terminate() d. abandon()
How can we restrict a function to throw certain exceptions? a. Defining multiple try and catch block inside a function b. Defining generic function within try block c. Defining function with throw clause d. It is not possible in CPP to restrict a function
A try block can be nested under another try block - a. Yes b. No
Return type of uncaught_exception() is________________. a. int b. bool c. char * d. double
Catch handler can have multiple parameters. a. True b. False
The code of statements which may cause abnormal termination of the program should be written under_________ block. a. try b. catch c. Finally d. None of these
Exception handlers are declared with ____________ keyword. a. Try b. catch c. throw d. finally
An exception is thrown using _____________ keyword in CPP. a. throws b. throw c. threw d. thrown?
How to implement exception handling in C++?
Explain unexpected() function?