Courseiva
Control Flow, Loops, Lists and LogicmediumDrag & DropObjective-mapped

PCEP Control Flow, Loops, Lists and Logic Practice Question

Arrange the steps to handle an exception in Python using try-except.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

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.

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 →

How Courseiva writes practice questions · Editorial policy

JA

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.