시나리오 기반 형식 및 채점
객관식 시나리오로 진행되며, 1000점 만점에 720점 이상이면 합격하고 추측 오답 감점은 없습니다
시나리오 기반 형식 및 채점은(는) CoddyKit의 무료 Claude Architect 강의입니다. 이것은 4개 중 3번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Claude Architect 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Claude Architect 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
What the Exam Looks Like
The exam is scenario-based multiple choice: read a realistic situation, then pick the best of 4 options where exactly 1 is correct. No code to write, no essays.
How Scoring Works
Your result is a scaled score from 100 to 1000, with the pass mark at 720. Scaling keeps different exam forms comparable — just aim well above 720 for safety.
# Scaled score range, not a raw percentage
MIN_SCORE = 100
MAX_SCORE = 1000
PASS_SCORE = 720
my_score = 760
print("PASS" if my_score >= PASS_SCORE else "FAIL")4 of 8 Scenarios
The exam draws from 8 core scenarios, but any single sitting shows you 4 of them — and you won't know which in advance. The takeaway: study all 8.
The 8 Scenarios at a Glance
The 8 scenarios each map to a real pattern: customer support, code generation, multi-agent research, developer productivity, CI/CD, data extraction, conversational AI, and agentic tools.
No Penalty for Guessing
There's no penalty for guessing — a wrong answer costs the same as a blank: zero. So never leave one empty. Eliminate what you can, then pick the best of the rest.
# No guessing penalty -> always answer
# Expected value of guessing 1-of-4 is strictly positive
blank_value = 0
guess_value = 1 / 4 # > 0, so guessing beats leaving blank
print("Answer every question:", guess_value > blank_value)Who the Exam Is For
The audience is solution architects with 6+ months of production Claude experience. That's why questions are scenario-based — they test the judgment that comes from shipping, not memorized facts.
The 5 Domains and Their Weights
Questions spread across 5 weighted domains: D1 27%, D2 18%, D3 20%, D4 20%, D5 15%. D1 carries the most weight, so agent design and orchestration deserve the deepest study.
DOMAIN_WEIGHTS = {
"D1 Agent Architecture & Orchestration": 27,
"D2 Tool Design & MCP": 18,
"D3 Claude Code Config & Workflows": 20,
"D4 Prompt Engineering & Structured Output": 20,
"D5 Context Management & Reliability": 15,
}
print(sum(DOMAIN_WEIGHTS.values())) # 100Why Scenarios Beat Trivia
A trivia question asks what stop_reason returns; a scenario drops you mid-loop and asks what to do next. You're given a real situation and must choose the architecturally correct response.
Distractors Are Often Anti-Patterns
Wrong options are written to be tempting — many are classic anti-patterns: parsing text for 'done', iteration caps as the main stop, or enforcing rules with prompts not hooks. Spot one, rule it out.
Read for the Strongest Answer
Often more than one option is technically valid; the exam wants the strongest for the context. Anchor on principles: terminate on stop_reason, use hooks for critical rules, pass context to subagents.
# Correct agentic-loop termination: driven by stop_reason
while True:
resp = client.messages.create(model=MODEL, max_tokens=1024,
messages=history, tools=tools)
if resp.stop_reason == "tool_use":
history.append({"role": "assistant", "content": resp.content})
history.append(run_tools(resp)) # append results, continue
continue
break # end_turn / max_tokens / stop_sequence -> stop hereA Smart Test-Taking Strategy
A smart strategy: answer everything, eliminate anti-patterns to shrink 4 options to 2, weight prep toward D1, study all 8 scenarios, and aim past 720 with margin.
Quick Check: Format & Scoring
Apply what you've learned about the exam's format and scoring rules.
Recap: Format & Scoring
Recap: scenario-based MCQ (4 options, 1 correct), scaled 100-1000, pass 720, 4 of 8 scenarios, no guessing penalty. Domains D1 27% to D5 15%. Eliminate anti-patterns, then pick the strongest.
자주 묻는 질문
“시나리오 기반 형식 및 채점” 강의는 무료인가요?
네 — “시나리오 기반 형식 및 채점” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Claude Architect 강의 전체를 잠금 해제할 수 있습니다. Claude Architect 강의에는 총 4개의 강의가 포함되어 있습니다.
“시나리오 기반 형식 및 채점”에서 뭘 배우나요?
객관식 시나리오로 진행되며, 1000점 만점에 720점 이상이면 합격하고 추측 오답 감점은 없습니다 브라우저에서 직접 실행하는 실습 코드로 Claude Architect을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Claude Architect을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Claude Architect은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 3번째 강의입니다.
“시나리오 기반 형식 및 채점” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Claude Architect 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Claude Architect 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- 인증 한눈에 보기
- 시험의 다섯 영역
- 시나리오 기반 형식 및 채점
- 이 시험을 치러야 하는 사람