- A
The finally block always runs.
The finally clause executes regardless of whether an exception occurred or not.
- B
The else block runs if no exception occurred.
The else clause executes when the try block does not raise an exception.
- C
You must have at least one except block if you have a finally block.
Why wrong: A try-finally block is valid without any except block.
- D
You can have multiple except blocks for different exception types.
Multiple except blocks allow handling different exception types separately.
- E
A try block must have at least one except block.
Why wrong: A try block can have only a finally block, no except.
PCEP Practice Question: Functions, Tuples, Dictionaries and Exceptions
This PCEP practice question tests your understanding of functions, tuples, dictionaries and exceptions. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Which THREE of the following statements about Python exception handling are correct?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
The finally block always runs.
Options B, C, and D are correct. It is possible to have multiple except blocks for different exception types (B). The else block runs if no exception occurred (C). The finally block always runs, regardless of whether an exception occurred (D). Option A is false because a try block can have only a finally block without any except. Option E is false because a try block must have at least except or finally, but you cannot omit except if you have finally; you can have try-finally without except, but the statement says 'you can omit the except block if you have finally', which is true? Actually you can omit except if you have finally, but the option says 'you can omit the except block if you have finally' - that is true, but the option is phrased as a correct statement? Let me rephrase: The option E says 'You can omit the except block if you have finally.' This is actually true: a try block can consist of try-finally without except. However, the intent is to test the requirement of at least one except? Actually the correct statement is that you can omit except if you have finally, but many beginners think you need an except. However, to avoid confusion, I'll make E false by stating it incorrectly. But given the common misconception, I'll stick: Option E is false because you cannot omit except? Actually you can. Let me correct: In Python, you can have a try block with only a finally block, no except. So option E is a true statement. But then it would be a fourth correct option. I need to adjust: The question asks for THREE correct. Let me modify option E to be false: 'You must have at least one except block if you have a finally block.' That is false. So I'll change the text of E to 'You must have at least one except block if you have a finally block.' Then correct options are B, C, D.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
The finally block always runs.
Why this is correct
The finally clause executes regardless of whether an exception occurred or not.
Related concept
Read the scenario before looking for a memorised answer.
- ✓
The else block runs if no exception occurred.
Why this is correct
The else clause executes when the try block does not raise an exception.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
You must have at least one except block if you have a finally block.
Why it's wrong here
A try-finally block is valid without any except block.
- ✓
You can have multiple except blocks for different exception types.
Why this is correct
Multiple except blocks allow handling different exception types separately.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
A try block must have at least one except block.
Why it's wrong here
A try block can have only a finally block, no except.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Many certification questions include familiar terms but test a specific constraint. Read the exact wording before choosing an answer that is generally true but wrong for this case.
Detailed technical explanation
How to think about this question
This question should be treated as a scenario, not a definition check. Identify the problem, the constraint and the best action. Then compare each option against those facts.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
- Use explanations to understand the rule behind the answer.
TExam Day Tips
- Underline the problem statement mentally.
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the PCEP exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Identify which PCEP exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.
- →
Functions, Tuples, Dictionaries and Exceptions — study guide chapter
Learn the concepts, then practise the questions
- →
Functions, Tuples, Dictionaries and Exceptions practice questions
Targeted practice on this topic area only
- →
All PCEP questions
510 questions across all exam domains
- →
Certified Entry-Level Python Programmer PCEP study guide
Full concept coverage aligned to exam objectives
- →
PCEP practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related PCEP practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Computer Programming and Python Fundamentals practice questions
Practise PCEP questions linked to Computer Programming and Python Fundamentals.
Data Types, Variables, Basic I/O and Operators practice questions
Practise PCEP questions linked to Data Types, Variables, Basic I/O and Operators.
Control Flow, Loops, Lists and Logic practice questions
Practise PCEP questions linked to Control Flow, Loops, Lists and Logic.
Functions, Tuples, Dictionaries and Exceptions practice questions
Practise PCEP questions linked to Functions, Tuples, Dictionaries and Exceptions.
PCEP fundamentals practice questions
Practise PCEP questions linked to PCEP fundamentals.
PCEP scenario practice questions
Practise PCEP questions linked to PCEP scenario.
PCEP troubleshooting practice questions
Practise PCEP questions linked to PCEP troubleshooting.
Practice this exam
Start a free PCEP practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this PCEP question test?
Functions, Tuples, Dictionaries and Exceptions — This question tests Functions, Tuples, Dictionaries and Exceptions — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The finally block always runs. — Options B, C, and D are correct. It is possible to have multiple except blocks for different exception types (B). The else block runs if no exception occurred (C). The finally block always runs, regardless of whether an exception occurred (D). Option A is false because a try block can have only a finally block without any except. Option E is false because a try block must have at least except or finally, but you cannot omit except if you have finally; you can have try-finally without except, but the statement says 'you can omit the except block if you have finally', which is true? Actually you can omit except if you have finally, but the option says 'you can omit the except block if you have finally' - that is true, but the option is phrased as a correct statement? Let me rephrase: The option E says 'You can omit the except block if you have finally.' This is actually true: a try block can consist of try-finally without except. However, the intent is to test the requirement of at least one except? Actually the correct statement is that you can omit except if you have finally, but many beginners think you need an except. However, to avoid confusion, I'll make E false by stating it incorrectly. But given the common misconception, I'll stick: Option E is false because you cannot omit except? Actually you can. Let me correct: In Python, you can have a try block with only a finally block, no except. So option E is a true statement. But then it would be a fourth correct option. I need to adjust: The question asks for THREE correct. Let me modify option E to be false: 'You must have at least one except block if you have a finally block.' That is false. So I'll change the text of E to 'You must have at least one except block if you have a finally block.' Then correct options are B, C, D.
What should I do if I get this PCEP question wrong?
Identify which PCEP exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Keep practising
More PCEP practice questions
- Which THREE of the following statements about Python data types are correct? (Choose three.)
- A developer writes the following code snippet: for i in range(3): for j in range(2): if i == j:…
- Order the steps to write a for loop that iterates over a range of numbers.
- Arrange the steps to slice a list in Python.
- Order the steps to create and use a list in Python.
- Arrange the steps to write and run a Python script from the command line in the correct order.
Last reviewed: Jun 24, 2026
This PCEP practice question is part of Courseiva's free Python Institute certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PCEP exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.