Your team notices a spike in failed tool calls from a deployed workflow agent after a recent API schema update. The agent still returns outputs, but many are irrelevant or incomplete. Which maintenance task should be prioritized to restore accurate behavior?
Correct Answer: B
The selected option specifically B states "Update the tool function specifications and re-test action sequences.", which matches the operational requirement rather than a superficial wording match. For this scenario, Option B is defensible because it exposes the control plane that a senior engineer can test, scale, and harden. Operationally, the design depends on tool contracts that can be versioned, tested, and observed independently from the reasoning loop. A schema update breaks the tool contract. The first repair is to update function specifications and retest action sequences, not adjust randomness or memory. That is why the other options are traps: manual tool wiring scales poorly as the catalog grows and usually fails silently when a vendor updates parameters or response fields. Within the NVIDIA stack, NeMo Agent Toolkit treats agents, tools, and workflows as composable functions, so tool-calling agents can choose from names, descriptions, and schemas rather than guessed endpoints. It also creates clean evidence for audits, incident review, and root- cause analysis when behavior drifts.
Question 7
A company is deploying a multi-agent AI system to handle large-scale customer interactions. They want to ensure the system is highly available, cost-effective, and scalable across multiple NVIDIA GPUs using container orchestration tools. Which practice is most crucial for successfully deploying and scaling an agentic AI system in production?
Correct Answer: D
Option D is the right call because it gives the platform team levers to tune behavior without rewriting the entire agent loop. The selected option specifically D states "Implementing automated workload management and resource scheduling frameworks to optimize GPU utilization and maintain service availability.", which matches the operational requirement rather than a superficial wording match. Automated workload management assigns GPU capacity according to demand while preserving availability. Static request assignment cannot handle traffic skew or accelerator saturation. The runtime should therefore be built around asynchronous collaboration, state checkpoints, and topic-based communication so one blocked agent does not stall the whole workflow. Within the NVIDIA stack, multi-agent execution should expose traces for delegation, handoff, retries, and final task completion rather than treating the conversation as a black box. The losing choices mostly optimize for short-term convenience; centralized rules handle known paths but fail when the environment changes or when tasks need dynamic decomposition. The answer is therefore about engineered control planes, not simply model capability.
Question 8
You are using an LLM-as-a-Judge to evaluate a RAG pipeline. What is the primary benefit of synthetically generating question-answer pairs, rather than relying solely on human-created test cases?
Correct Answer: D
Synthetic QA generation expands coverage across scenarios humans may not enumerate. It still needs validation, but it improves test breadth for RAG evaluation. The durable control mechanism is measurement of the whole agent path: prompt, retrieval, tool calls, reasoning steps, final answer, and user-facing outcome. The selected option specifically D states "Synthetic generation allows for systematic testing of the RAG pipeline across a wider range of scenarios and query types.", which matches the operational requirement rather than a superficial wording match. Option D is the correct engineering choice because the requirement is not just "make the model answer," but control the execution surface. The alternatives would look simpler in a prototype, but aggregate metrics can hide the exact variant, time window, or complexity tier where the agent fails. In NVIDIA terms, Triton, Prometheus, GenAI-Perf, Nsight, and workflow traces give different slices of the same production behavior. For certification purposes, read the question as asking for controlled autonomy, not raw LLM creativity.
Question 9
An AI engineer is evaluating an underperforming multi-agent workflow built with NVIDIA agentic frameworks. Which analysis approach most effectively identifies optimization opportunities in agent coordination and communication patterns?
Correct Answer: D
In NVIDIA terms, multi-agent execution should expose traces for delegation, handoff, retries, and final task completion rather than treating the conversation as a black box. Optimization must inspect interactions, not just agent accuracy. Redundant calls, poor delegation, and communication loops often consume more budget than the model itself. Option D is the correct engineering choice because the requirement is not just "make the model answer," but control the execution surface. The selected option specifically D states "Trace agent interaction patterns using observability features, measure communication overhead, identify redundant operations, and analyze task distribution efficiency.", which matches the operational requirement rather than a superficial wording match. The durable control mechanism is asynchronous collaboration, state checkpoints, and topic-based communication so one blocked agent does not stall the whole workflow. The losing choices mostly optimize for short-term convenience; centralized rules handle known paths but fail when the environment changes or when tasks need dynamic decomposition. For certification purposes, read the question as asking for controlled autonomy, not raw LLM creativity.
Question 10
An AI Engineer is analyzing a production agentic AI system's compliance with responsible AI standards. Which evaluation approaches effectively identify potential safety vulnerabilities and ethical risks in multi- agent workflows? (Choose two.)
Correct Answer: B,D
Operationally, the design depends on guardrail coverage that is tested against observed failures and adversarial prompts rather than assumed from policy text. For this scenario, the combination of Options B and D is defensible because it exposes the control plane that a senior engineer can test, scale, and harden. Audit trails, semantic policy checks, bias metrics, and adversarial tests expose ethical and safety risk. Latency is operational, not sufficient for responsible AI evaluation. Within the NVIDIA stack, Guardrails are most effective when paired with evaluation, red-team prompts, and audit metadata so coverage gaps become visible. Together, B states "Implement comprehensive audit trails using NVIDIA NeMo Guardrails with semantic similarity checks, tracking agent decisions across conversation flows and evaluating policy violations through automated compliance scoring."; D states "Deploy multi-layered evaluation combining bias detection metrics (demographic parity, equalized odds) with adversarial testing to probe agent responses for harmful outputs across diverse user populations", so the answer covers both sides of the requirement instead of solving only the model or only the infrastructure layer. The rejected options are weaker because keyword filters and one-time prompt disclaimers do not enforce policy under prompt injection, ambiguous requests, or regulated-domain escalation paths. It also creates clean evidence for audits, incident review, and root-cause analysis when behavior drifts.