⟩ What is Bidirectional iterators?
These can Read and write values with forward and backward movement and can be incremented, decremented.
These can Read and write values with forward and backward movement and can be incremented, decremented.
Generic catch handler is represented by ______________. a. catch(..,) b. catch(---) c. catch(…) d. catch( void x)
Attempting to throw an exception that is not supported by a function call results in calling _____________ library function. a. indeterminate() b. unutilized() c. unexpected() d. unpredicted()
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?