Placing throw() after a function's parameter list:

a. Guarantees that all exceptions can be thrown in this function.
b. Guarantees that only programmer-defined exceptions can be thrown in this function.
c. Indicates that throwing an exception in this function would call unexpected.
d. Indicates that the compiler will issue an error if the function contains a throw expression.

c. Indicates that throwing an exception in this function would call unexpected.

Computer Science & Information Technology

You might also like to view...

To add descriptive text to a worksheet without modifying the data, you can add ________

A) hyperlinks B) macros C) data validation rules D) reviewer comments

Computer Science & Information Technology

What is the value of the variable innerNum at the end of the execution of the following code? ? int outerNum; int innerNum; for (outerNum = 1; outerNum < 2; outerNum++) {    for (innerNum = 1; innerNum < 2; innerNum++)       cout

A. 1 B. 2 C. 3 D. 4

Computer Science & Information Technology