Solved

The Following Catch Statement Can Catch (Exception E){…}

Question 4

Multiple Choice

The following catch statement can catch (Exception e) {…}


A) can handle all exceptions that are instances of the Exception class,but not a subclass of Exception.
B) handle all throwable objects by using polymorphic reference as a parameter in the catch clause.
C) handle all exceptions that are instances of the Exception class or a subclass of Exception.
D) is an error since no objects are instantiated in the Exception class.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions