🗺 Prompt and Context
Prompt and Context Engineering is 11.0% of CCDV-F, roughly six items of fifty-three. That makes it a mid-weight domain: worth real but bounded study time, far behind Applications and Integration, about level with Tools and MCPs. The questions are implementation questions, not style advice. Expect to be shown a prompt or a request payload and asked what to change: where a rule belongs, how a document should be delimited, why the returned JSON will not parse.
The idea that unlocks the domain is that a prompt is a structured document with a fixed order, not a paragraph of wishes. Durable identity and standing rules go in the system parameter. Long documents go near the top of the user turn, above the question. Instructions and examples each get their own tagged block. The output contract comes last and is enforced rather than requested. Everything else follows from that: prefill locks the opening, thinking has to be budgeted and placed before the answer, and because the Messages API is stateless, every turn you carry forward is a turn you pay for again.
system parameter; the turn-specific task belongs in the user message. There is no system role inside messages.<document>, <instructions>, <example> and <data>. The tag names are yours to pick; using them consistently matters more than which word you pick.<example> tags and include at least one edge case you actually care about.input_schema is the schema you want, rather than asking for JSON in prose and hoping.max_tokens.input_schema and validate before you use the result.top_p or top_k alongside it.max_tokens. Setting it close to max_tokens starves the visible answer and yields a truncated response.SCRIBE — the order in which a prompt is assembled, front to back.
system parameter, where they persist across every turn.<thinking> block, or an extended thinking budget when the task earns one.Read it as a sequence, not a checklist: each letter constrains the one after it, and the two most commonly skipped are R and E — the parts that make the output machine-readable.
Practise this domain with original, exam-style questions.
Start practising free