Solved

Which of the Following Statements Is False

Question 18

Multiple Choice

Which of the following statements is false?


A) When an exception occurs in a try suite, it terminates immediately.
B) When there are except handlers, program control transfers to the first one that matches the type of the raised exception. If there are no except handlers that match the raised exception, a process called stack unwinding occurs.
C) When an except clause successfully handles an exception, program execution resumes with the finally clause (if there is one) , then with the next statement after the try statement.
D) After an exception is handled, program control returns to the raise point.

Correct Answer:

verifed

Verified

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

Related Questions