CBSE Class 12 Computer Science Question 11 of 44

Solved 2025 Sample Question Paper CBSE Class 12 Computer Science (083) — Question 11

Back to all questions
11
Question

Question 11

State whether the following statement is True or False:

The finally block in Python is executed only if no exception occurs in the try block.

Answer

False

Reason — The finally block in Python is always executed after the try block, regardless of whether an exception occurred or not.