Drag steps to the numbered slots on the right, or tap a step then tap a slot.
PCEP Control Flow, Loops, Lists and Logic Practice Question
Arrange the steps to handle an exception in Python using try-except.
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
try block, then except block, then else block, then finally block
Exception handling wraps risky code in try, catches exceptions with except, and optionally includes else and finally.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
try block, then except block, then else block, then finally block
Why this is correct
This is the correct order because the try block contains the risky code, except blocks handle exceptions, else runs if no exception occurs, and finally always executes for cleanup.
- ✗
try block, then except block, then finally block, then else block
Why it's wrong here
This is incorrect because the else block must come before the finally block; else is dependent on no exception occurring, while finally is unconditional.
- ✗
try block, then else block, then except block, then finally block
Why it's wrong here
This is incorrect because the else block can only appear after all except blocks; it is part of the try/except structure and must follow except.
- ✗
except block, then try block, then else block, then finally block
Why it's wrong here
This is incorrect because the try block must come first; except cannot exist without a preceding try block syntactically.
Go deeper
Related to this question
About these practice questions
Courseiva writes every PCEP question from scratch — 498 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
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.