Ask Question
6 July, 13:02

The term "exception propagation" means:

a) an exception is caught by the first catch clause

b) an exception not caught by the first catch clause is caught by an outer (enclosing) catch clause

c) exceptions are caught, sequentially, by catch clauses in the current try block

d) exceptions always are caught by the outermost try block

e) none of the above

+5
Answers (1)
  1. 6 July, 14:00
    0
    B

    Explanation:

    Exceptions are caught from inner catch block to the outer catch. If an exception is thrown inside a method and it is not catches by that catch block then the calling method's catch block / outer catch block will catch that

    The Answer is B
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “The term "exception propagation" means: a) an exception is caught by the first catch clause b) an exception not caught by the first catch ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers