0
Q:
A) A function is limited to throwing only a specified list of exceptions. | B) A catch can catch all types of exceptions. |
C) A function can throw any type of exceptions. | D) none of the mentioned |
Answer: A) A function is limited to throwing only a specified list of exceptions.
Explanation:
Explanation:
C++ provides a mechanism to ensure that a given function is limited to throwing only a specified list of exceptions. It is called as exception specification.