Verified Answers | 100% Correct | Grade A 2026/2027
OBJECTIVE ASSESSMENT - EXAM
NEIEP 700 Final Exam Version 1
(Latest 2026/2027 Update)
Questions and Verified Answers |
100% Correct | Grade A 2026/2027
75 100%
QUESTIONS VERIFIED ANSWERS EDITION
TOPICS COVERED
Prompt Engineering Principles & Techniques
AI Ethics, Bias & Responsible AI Practices
Generative AI Fundamentals & ApplicationsMachine Learning Fundamentals
Natural Language Processing (NLP) BasicsReal-World AI Communication Scenarios
COVER PAGE - 1
, SECTION 1 | Prompt Engineering Principles & Techniques | Q1-Q15 | NEIEP 700 Final Exam Version 1
(Latest 2026/2027 Update) Questions and Verified Answers | 100% Correct | Grade A 2026/2027
2026/2027
Q1 Question 1 of 75
A data scientist at a healthcare company needs a language model to classify patient feedback into
categories such as billing, appointment scheduling, and treatment quality. The model has never been
trained specifically on this classification task, and the scientist wants the quickest approach that
avoids collecting labeled examples. When comparing zero-shot prompting to few-shot prompting,
what is the primary advantage of zero-shot prompting in this scenario?
A. It needs no labeled examples in the prompt, cutting preparation time and avoiding data curation
B. It produces more accurate classifications because the model relies entirely on its pre-trained
knowledge
C. It allows the model to learn new categories dynamically during the inference process
D. It removes the requirement for any task description or category labels in the prompt text itself
Correct Answer: A
Rationale:
Zero-shot prompting sends only the task instruction and input without demonstration examples, making it the
fastest approach when labeled data is unavailable. Option B is incorrect because zero-shot prompting typically
yields lower accuracy than few-shot prompting, which provides concrete examples that anchor the model's
output format and classification boundaries.
Q2 Question 2 of 75
A financial analyst uses an LLM to evaluate whether a company meets the criteria for a value stock
classification based on price-to-earnings ratio, debt-to-equity ratio, and dividend yield. The analyst
notices the model sometimes outputs a final answer that contradicts the individual metric
assessments it listed moments earlier. Adding a chain-of-thought directive such as 'think step by step'
would most likely improve results by doing what?
A. Increasing the model's context window so it can process more financial metrics at once
B. Forcing the model to generate intermediate reasoning before arriving at the final classification
C. Automatically fine-tuning the model on financial reasoning data during the request
D. Reducing the token count of the output so only the final answer is returned
Correct Answer: B
Rationale:
Chain-of-thought prompting instructs the model to articulate intermediate reasoning steps before producing a
final answer, which reduces logical contradictions and improves accuracy on multi-criteria tasks. Option A is
incorrect because chain-of-thought prompting does not expand the context window; it uses the existing window
more effectively by structuring the reasoning process.
Q3 Question 3 of 75
NEIEP 700 Final Exam Version 1 (Latest 2026/2027 Update) Questions and Verified Answers | 100% Correct | Grade A 2026/2027 | 2026/2027 | Passing Score: 80% | Page 2 of 39
, A software development team deploys a chatbot that must always respond in a formal tone, refuse to
discuss competitors, and limit each answer to three sentences. These behavioral constraints need to
persist across every turn of every conversation without being repeated by users. In a typical API
integration, where should these persistent behavioral rules be placed so they apply to all interactions
without user intervention?
A. In the user prompt, repeated at the start of every single message the chatbot receives
B. In a separate configuration file that the model reads at the beginning of each session
C. In the system prompt, which is prepended to every API call by the application layer
D. In the model's fine-tuning dataset so the behavior is baked into the weights permanently
Correct Answer: C
Rationale:
The system prompt is designed to hold persistent instructions that the application layer automatically prepends
to every API call, making it the correct place for rules that must apply universally across all interactions. Option A
is incorrect because placing constraints in the user prompt requires the application to manually inject them every
time, which is redundant and error-prone compared to using the dedicated system prompt field.
Q4 Question 4 of 75
A legal research assistant needs to summarize a 200-page contract, extract all termination clauses,
and then generate a risk assessment for each clause. Attempting all three tasks in a single prompt
produces incomplete and disorganized results. The engineer decides to split the work into sequential
prompts where the output of one becomes the input of the next. This technique is best described by
which term?
A. Parallel prompting with branching logic for multi-output generation
B. Self-consistency decoding with majority voting across repeated runs
C. In-context learning with dynamic example injection per request
D. Prompt chaining and decomposition into sequential sub-tasks
Correct Answer: D
Rationale:
Prompt chaining and decomposition involve breaking a complex task into smaller sequential steps, where each
step's output feeds into the next prompt, ensuring focused and manageable processing at each stage. Option A
is incorrect because parallel prompting runs multiple independent prompts simultaneously rather than
sequencing them, which would not work here since the risk assessment depends on the extracted clauses.
Q5 Question 5 of 75
A marketing team wants an LLM to generate 50 creative slogans for a new energy drink. They need
diverse, unexpected phrases rather than safe, repetitive ones, but they also want the slogans to
remain coherent and on-brand. Setting the temperature parameter to a high value such as 0.9 while
keeping top-p at a moderate value like 0.9 would accomplish what primary effect?
A. It narrows the vocabulary to only the most probable tokens, ensuring brand consistency
B. It automatically filters out slogans that do not match the energy drink category
NEIEP 700 Final Exam Version 1 (Latest 2026/2027 Update) Questions and Verified Answers | 100% Correct | Grade A 2026/2027 | 2026/2027 | Passing Score: 80% | Page 3 of 39
, C. It reduces the total number of tokens generated per slogan to keep outputs concise
D. It increases the randomness of token selection, producing more varied and creative slogan
candidates
Correct Answer: D
Rationale:
A high temperature value flattens the probability distribution over tokens, allowing less likely but still plausible
words to be selected, which increases output diversity and creativity. Option A is incorrect because a high
temperature does the opposite of narrowing vocabulary; a low temperature value would concentrate selection on
the most probable tokens.
Q6 Question 6 of 75
A university professor asks an LLM to review student essays and provide feedback that mirrors the
grading style of a strict academic reviewer. The professor provides a detailed description of the
reviewer's personality, communication habits, and evaluation criteria within the prompt. This
approach of assigning a specific identity to the model is known as what?
A. Instruction tuning through supervised alignment on persona data
B. Role-playing or persona prompting to shape the model's output style
C. Few-shot demonstration with annotated grading rubric examples
D. Reinforcement learning from human feedback with persona rewards
Correct Answer: B
Rationale:
Role-playing or persona prompting involves describing a specific identity, tone, or perspective for the model to
adopt, which shapes how it formulates responses without any model weight changes. Option A is incorrect
because instruction tuning requires modifying model weights through supervised training, whereas persona
prompting works entirely through the prompt text at inference time.
Q7 Question 7 of 75
A customer support center handles thousands of emails daily and needs to generate consistent,
personalized responses by inserting customer names, order numbers, and issue types into a fixed
message structure. The engineering team creates a base prompt with placeholder markers that are
programmatically replaced with real data before each API call. This approach is best described as
what?
A. Dynamic prompt generation using retrieval-augmented generation pipelines
B. Prompt caching with semantic similarity matching for template reuse
C. Prompt templating with variable substitution for batch processing
D. Automated prompt optimization through gradient-based search methods
Correct Answer: C
NEIEP 700 Final Exam Version 1 (Latest 2026/2027 Update) Questions and Verified Answers | 100% Correct | Grade A 2026/2027 | 2026/2027 | Passing Score: 80% | Page 4 of 39