Identifying Prompt Engineering Techniques in Azure OpenAI
You have an Azure subscription. The subscription contains an Azure OpenAI resource that hosts a GPT-3.5 Turbo model named Model1. You configure Model1 to use the following system message: “You are an AI assistant that helps people solve mathematical puzzles. Explain your answers as if the request is by a 4-year-old.” Which type of prompt engineering technique is this an example of?
Community Votes
100% of anonymous learners picked answer D. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
The core concept tested is the definition of priming versus other techniques like few-shot learning or chain-of-thought, with the common trap being the confusion between setting a role (priming) and requesting step-by-step reasoning (chain-of-thought).
This question tests the ability to distinguish between prompt engineering techniques by analyzing a system message that sets a specific persona and tone. It establishes that providing context and role instructions is classified as priming.
Many learners incorrectly select 'Chain of thought' because the prompt asks for an explanation, but this technique specifically requires explicit instruction to reason step-by-step, whereas the given prompt only sets the output style/audience.
Community Discussion (13 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
The correct answer is D, Priming. In the context of Azure OpenAI and LLMs, priming involves providing initial context, instructions, or a persona to guide the model's behavior before it generates a response. The system message explicitly defines the AI's role ('AI assistant') and the desired output style ('explain... as if the request is by a 4-year-old'). This sets the expectation and 'primes' the model to adopt that specific tone and perspective.Why the Other Options Are Wrong
Option A, Few-shot learning, is incorrect because it requires providing specific input-output examples within the prompt to teach the model a new task or format, which is not present here. Option C, Chain of thought, is incorrect because while the user asks for an explanation, there is no explicit instruction for the model to break down its reasoning process step-by-step (e.g., 'Let's think step by step'), which is the hallmark of CoT. Option B, Affordance, is not a standard prompt engineering technique in this context.Community Comment Notes
The community consensus strongly favors D. As user River06 noted, priming is utilized because it involves setting up the context or role explicitly. User shorymor confirmed this by referencing Microsoft's official documentation on advanced prompt engineering. Some users like bugimachi and demonite argued for Chain of Thought, confusing the request for an explanation with the specific technical requirement of step-by-step reasoning instructions.Official Reference
Exam Strategy
When you see a system message defining a persona, tone, or general behavior without providing examples or explicit step-by-step reasoning instructions, classify it as Priming. Reserve Chain of Thought for prompts that explicitly ask the model to show its work or reason through steps.
Frequently Asked Questions
What is the difference between priming and chain of thought?
Priming sets the overall context, persona, or tone (e.g., 'act as a teacher'). Chain of thought explicitly instructs the model to break down its reasoning step-by-step to solve complex problems.
Is asking for an explanation always chain of thought?
No. Asking for an explanation with a specific audience constraint (like 'explain to a 4-year-old') is priming. Chain of thought requires explicit instructions to show the logical steps taken.