Which two deployment patterns are MOST suitable for scaling agentic workloads on NVIDIA Infrastructure? (Choose two.)
Correct Answer: D,E
Together, D states "Containerized deployment with NIM (NVIDIA Inference Microservices)"; E states "Kubernetes orchestration with Horizontal Pod Autoscaling (HPA)", so the answer covers both sides of the requirement instead of solving only the model or only the infrastructure layer. At production scale, the combination of Options D and E preserves separability between reasoning, state, tools, and runtime operations. Operationally, the design depends on independent scaling of agent components so embeddings, reranking, reasoning, and guardrails do not share one rigid capacity pool. NIM containers package optimized inference services, and Kubernetes HPA scales them. Bare metal and fixed VMs remove the elasticity needed for agent workloads. That is why the other options are traps: CPU-only or memory-only scaling signals rarely capture the saturation profile of GPU-backed LLM inference. For a production build, NIM microservices and the NIM Operator fit Kubernetes production operations; Triton provides serving primitives and Prometheus- exportable inference metrics for GPUs and models. It also creates clean evidence for audits, incident review, and root-cause analysis when behavior drifts.
Question 42
A Lead AI Architect at a global financial institution is designing a multi-agent fraud detection system using an agentic AI framework. The system must operate in real time, with distinct agents working collaboratively to monitor and analyze transactional patterns across accounts, retain and share contextual information over time, and escalate suspicious behaviors to a human fraud analyst when needed. Which architectural approach enables intelligent specialization, shared memory, and inter-agent coordination in a dynamic and evolving threat environment?
Correct Answer: A
The selected option specifically A states "Design a modular multi-agent system where individual agents collaborate asynchronously using shared memory and structured messaging.", which matches the operational requirement rather than a superficial wording match. Fraud monitoring needs specialization: transaction monitors, pattern analysts, memory stores, and escalation agents. Asynchronous collaboration prevents one slow analytical path from blocking the entire detection fabric. Option A fits the operating model because the problem describes an agent that must remain adaptive under changing inputs and infrastructure conditions. This lines up with NVIDIA guidance because NeMo Agent Toolkit is framework-agnostic and can orchestrate LangChain, CrewAI, LlamaIndex, Semantic Kernel, and custom Python agents behind a common workflow layer. The durable control mechanism is workflow graphs where agent responsibilities, inputs, and completion criteria are visible to both orchestration and evaluation layers. That is why the other options are traps: random routing or unstructured collaboration wastes specialization and makes coordination failures look like model hallucinations. For certification purposes, read the question as asking for controlled autonomy, not raw LLM creativity.
Question 43
A financial services company is deploying a multi-agent customer service system consisting of three specialized agents: a reasoning LLM for complex queries, an embedding agent for document retrieval, and a re-ranking agent for result optimization. The system experiences significant traffic variations, with peak loads during business hours (10x normal traffic) and minimal usage overnight. The company needs a deployment solution that can handle these fluctuations cost-effectively while maintaining sub-second response times during peak periods. Which NVIDIA infrastructure approach would provide the MOST cost-effective and scalable deployment solution for this variable-load multi-agent system?
Correct Answer: C
The rejected options are weaker because fixed clusters, manual scaling, or single-node deployments waste accelerators during quiet periods and fail predictably during launch spikes. NIM microservices on Kubernetes with NIM Operator and HPA match variable-load multi-agent systems. Manual DGX scaling is expensive and slow. Option C fits the operating model because the problem describes an agent that must remain adaptive under changing inputs and infrastructure conditions. The selected option specifically C states "Deploy NVIDIA NIM microservices on Kubernetes with auto-scaling capabilities, utilizing NVIDIA NIM Operator for lifecycle management and horizontal pod autoscaling based on custom metrics.", which matches the operational requirement rather than a superficial wording match. This lines up with NVIDIA guidance because a production stack should connect DCGM, Prometheus, Grafana, HPA, and model-serving latency so scaling follows the real bottleneck. That matters because multi-region placement, automated failover, and rolling deployment practices for low-latency resilient agent serving. The result is a system that can be benchmarked, traced, and revised without destabilizing the whole agent fabric.
Question 44
An autonomous vehicle company operates a multi-agent AI system across its fleet to process real-time sensor data, make driving decisions, and communicate with cloud infrastructure. The company needs fleet-wide monitoring to track GPU utilization, inference times, and memory usage, correlate performance with driving conditions and system load, and predict safety issues before they occur. Which monitoring and observability approach would BEST meet these fleet-scale, safety-critical requirements?
Correct Answer: A
Option A is the right call because it gives the platform team levers to tune behavior without rewriting the entire agent loop. Within the NVIDIA stack, Triton dynamic batching and model configuration are where throughput and tail latency tradeoffs become controllable. The selected option specifically A states "Deploy NVIDIA NIM microservices with Prometheus integration, NVIDIA Nsight Systems profiling, and Kubernetes-native monitoring to provide detailed metrics, profiling, and container orchestration observability across the entire stack.", which matches the operational requirement rather than a superficial wording match. NIM, Prometheus, Nsight, and Kubernetes observability cover GPU, inference, and orchestration layers. That is the best NVIDIA-specific fleet monitoring answer. The runtime should therefore be built around dynamic batching, model instance tuning, concurrency control, precision optimization, KV-cache-aware LLM serving, and end-to-end latency waterfalls. The distractors fail because sequential microservices can add avoidable hops and tail latency even when every individual model looks fast. The answer is therefore about engineered control planes, not simply model capability.