Multiple Choice
Which of the following would be a good reason for using inherited exception classes?
A) a base class exception can be passed to an exception parameter of the derived class
B) a derived class exception can be passed to an exception parameter of the base class
C) a base class exception parameter can be passed any type of exception
D) all of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q32: Given the following function definition, what happens
Q33: The throw statement passes a value to
Q34: Can the following function throw any unhandled
Q35: The throw statement is enclosed in<br>A) a
Q36: If a throw list has multiple exceptions
Q38: In a try block, the throw statement
Q39: The catch block is the group of
Q40: A catch block that expects an integer
Q41: The block of code that handles an
Q42: You should use exception handling<br>A) in all