Ask Question
21 August, 16: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

+1
Answers (1)
  1. 21 August, 16:50
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers