Original items in the exam's scenario style. Use the filters to drill weak spots and review what's due, instead of grinding everything every time.
loading…
recalltask 0.1
You send Claude a question, get an answer, then send a follow-up that says 'expand on your second point.' For the model to know what 'your second point' refers to, what must be true of your second API request?
recalltask 0.1
In a Messages API response, what does stop_reason = "tool_use" tell you?
recalltask 0.2
When Claude 'uses a tool' to look up an order, who actually executes the lookup against your database?
applicationtask 0.2
Your app has two tools, lookup_customer and lookup_order, both described only as 'Retrieves data.' The model keeps calling the wrong one. Based on how tool selection works, what's the root cause?
recalltask 0.3
In the simplest terms, what makes a system an 'agentic loop'?
applicationtask 0.3
A coordinator agent delegates part of a research task to a subagent. The subagent produces a weak result, seemingly unaware of facts the coordinator already gathered. What's the most likely cause?
recalltask 0.4
What is the Model Context Protocol (MCP), most precisely?
recalltask 0.4
In a Claude Code project, what role does the CLAUDE.md file play?
judgmenttask 1.1
Your YesChef support agent loop occasionally never returns to the user — it keeps calling tools in circles when a chef's availability tool returns ambiguous data. A teammate proposes capping the loop at 5 iterations and returning whatever text the model last produced. Why is this the wrong primary fix?
applicationtask 1.1
In a single response, Claude returns two tool_use blocks: lookup_order and get_customer. What must your loop do before the next API call?
judgmenttask 1.2
You run your research system on 'caring for columnar cacti in cold climates.' Every subagent succeeds, yet the final report covers only watering and ignores cold-hardiness, soil, and light. The coordinator log shows it decomposed the topic into 'watering frequency,' 'watering amount,' and 'overwatering signs.' What is the most likely root cause?
applicationtask 1.3
Your coordinator delegates to a synthesis subagent, but the synthesis output keeps inventing which source a statistic came from. The search subagent definitely found correct, attributed data. What is the most direct fix?
judgmenttask 1.4
Production data shows your YesChef agent skips get_customer in 12% of cases and issues refunds against a customer's stated name, sometimes refunding the wrong account. Which change most effectively fixes this?
applicationtask 1.5
Your booking tools return dates inconsistently: get_yeschef_booking gives a Unix epoch, lookup_chef_availability gives ISO 8601, and a legacy tool returns a numeric status code. The agent keeps miscomparing dates. Which hook and why?
judgmenttask 1.6
A PR touches 14 files in your Music League data pipeline. Your single-pass review gives deep feedback on some files, shallow on others, misses obvious bugs, and even flags a pattern in one file while approving identical code in another. Best restructuring?
applicationtask 1.7
You analyzed the YesChef codebase in a session yesterday, then refactored three files. Today you want the agent to continue, but its prior tool results now describe code that no longer exists. Best approach?