How Scenario Questions Are Scored
Scaled 100-1000, 720 to pass, no guessing penalty.
What "Scoring" Really Measures
Every question on the Claude Certified Architect exam is a scenario-based multiple-choice item: 4 options, exactly 1 correct. Scoring is the process that turns your pattern of right and wrong answers into a single number the certification body can pass or fail you on.
This lesson is about that machinery: how raw answers become a scaled score, what the 720 threshold means, and why the no-guessing-penalty rule changes how you should behave on every single item.
Raw Score vs. Scaled Score
Your raw score is simply how many items you answered correctly. The exam does not report that number to you. Instead it converts your raw performance onto a fixed scaled range of 100 to 1000.
Scaling exists so that different exam forms — which may draw different scenarios of slightly different difficulty — remain comparable. A 720 on an easier form and a 720 on a harder form represent the same demonstrated competence. You never compute the scale yourself; you just need to clear the line.
# Conceptual model: raw correctness -> fixed scaled band
SCALE_MIN, SCALE_MAX = 100, 1000
PASS = 720
# Two forms, different raw difficulty, same scaled bar
for form, scaled in [("easy form", 725), ("hard form", 718)]:
print(form, "->", "PASS" if scaled >= PASS else "FAIL")All lessons in this course
- How Scenario Questions Are Scored
- Reading a Scenario Prompt
- Eliminating Wrong Answers
- Full Mock Exam Walkthrough