TechNuggets Academy
NCA-AIIO

Free NVIDIA-Certified Associate: AI Infrastructure and Operations Practice Test

12 exam-style questions with full explanations — no sign-up. Score yourself, then close your gaps with the full course.

Exam fee ~$1353 exam domainsLevel Beginner2 timed practice tests in the course
Free practice — no sign-up📝 Real exam-style questions💡 Detailed explanations💸 30-day money-back via Udemy
Question 1 of 12 · Essential AI Knowledge
A data science team is building an object detection model and reports 95% accuracy on their test set, but stakeholders notice the model rarely detects rare defects in manufacturing. The dataset contains 10,000 normal samples and 100 defect samples. Which metric would BEST reveal the model's actual performance on detecting defects?
Recall (True Positives / (True Positives + False Negatives)) directly measures the proportion of actual defects the model successfully detects. With severe class imbalance (100 defects vs 10,000 normal), a model can achieve 95% accuracy by predicting 'normal' for everything while missing all defects. Class-specific recall reveals this failure mode. For rare-event detection, recall on the minority class is the critical metric.
Question 2 of 12 · AI Infrastructure
A research team is deploying a DGX H100 system for training large language models with 80B parameters. They need to maximize GPU-to-GPU communication bandwidth while minimizing latency for model parallelism across all 8 GPUs. Which interconnect technology provides the highest bandwidth in this configuration?
DGX H100 systems use NVLink 4.0 with fourth-generation NVSwitch, providing 900 GB/s of bidirectional bandwidth per GPU. This creates a fully connected topology where every GPU can communicate with every other GPU at maximum bandwidth, essential for model parallelism in large model training.
Question 3 of 12 · AI Operations
A production AI training cluster running on NVIDIA DGX systems shows inconsistent job completion times. The admin runs `nvidia-smi` and observes GPU temperatures cycling between 45°C and 83°C every few minutes across multiple nodes. GPU utilization drops from 95% to 40% when temperatures exceed 80°C. Which action will BEST resolve this issue?
Temperature cycling between 45°C and 83°C with performance drops at 80°C indicates thermal throttling caused by inadequate cooling. DGX systems require proper datacenter cooling (18-27°C ambient) and unobstructed airflow. Thermal throttling is the GPU's protective mechanism when cooling is insufficient—fixing the root cause (cooling infrastructure) is the correct operational approach.
Question 4 of 12 · Essential AI Knowledge
An AI infrastructure engineer needs to deploy a container for running TensorRT inference workloads on NVIDIA GPUs in a production environment. Which source should they use to obtain the optimized, validated container image?
NVIDIA NGC (NVIDIA GPU Cloud) catalog is the official source for production-ready, GPU-optimized containers including TensorRT. NGC containers are pre-configured with correct CUDA, cuDNN, and TensorRT versions, tested for compatibility with NVIDIA GPUs, security-scanned, and include performance optimizations. For enterprise deployments, NGC is the recommended and supported path.
Question 5 of 12 · AI Infrastructure
An AI infrastructure team needs to support multiple concurrent inference workloads on a single A100 GPU, each requiring isolation for different customer tenants with guaranteed resources. The workloads vary: one needs 20GB memory, another needs 10GB, and a third needs 10GB. Which NVIDIA technology should they implement?
MIG on A100 provides hardware-level isolation with guaranteed memory and compute resources. A100 80GB supports configurations like 1x MIG 3g.20gb instance and 2x MIG 2g.10gb instances, providing complete isolation with dedicated SM, memory, and cache partitions for each tenant—critical for multi-tenancy security and QoS.
Question 6 of 12 · AI Operations
An MLOps team needs to monitor GPU utilization, memory usage, power consumption, and temperature across a 64-GPU cluster running continuous training jobs. The monitoring solution must integrate with Prometheus for alerting and require minimal performance overhead. Which tool should they deploy?
DCGM is NVIDIA's purpose-built GPU monitoring solution for datacenters. The dcgm-exporter component provides native Prometheus integration, collects comprehensive metrics (utilization, memory, power, temperature, health), and is designed for low overhead on production systems. This is the standard solution for production GPU monitoring.
Question 7 of 12 · Essential AI Knowledge
A company is evaluating whether to use CPUs or GPUs for training a large transformer model with 175 billion parameters. The training dataset requires processing 500TB of text data through multiple epochs. Which architectural characteristic of GPUs provides the PRIMARY advantage for this workload?
GPUs contain thousands of smaller, energy-efficient cores designed for massive parallelism, whereas CPUs have fewer (tens) powerful cores optimized for sequential tasks. Training neural networks involves matrix operations (multiplications, additions) performed on millions/billions of parameters simultaneously. GPUs excel at these embarrassingly parallel workloads. For a 175B parameter model, the ability to process thousands of matrix operations in parallel across tensor cores provides 10-100x speedup over CPUs.
Question 8 of 12 · AI Infrastructure
A company is building a 256-GPU training cluster for computer vision models using DGX A100 systems. They need to decide between InfiniBand and Ethernet for the cluster network. Training involves frequent all-reduce operations with 50GB model gradients synchronized across all GPUs. Which statement BEST describes the networking choice?
InfiniBand NDR (400 Gb/s) with RDMA and GPUDirect RDMA enables direct GPU-to-GPU transfers across nodes, bypassing CPU and reducing latency for collective operations like all-reduce. For 256-GPU training with frequent synchronization, the lower latency (sub-microsecond) and higher efficiency of InfiniBand provides 30-40% faster training compared to Ethernet alternatives.
Question 9 of 12 · AI Operations
A Slurm-managed AI cluster has 8 nodes with 8x A100 GPUs each. A researcher submits a distributed training job requiring 16 GPUs with `#SBATCH --gres=gpu:8` and `#SBATCH --nodes=2`. The job remains in PENDING state. `sinfo` shows all nodes are idle with all GPUs available. What is the MOST likely cause?
For Slurm to recognize `--gres=gpu:X` requests, GresTypes must be configured in slurm.conf (e.g., `GresTypes=gpu`). Without this, Slurm doesn't understand the GPU resource type and cannot allocate GPUs, causing jobs to pend indefinitely even when GPUs are physically available. This is a common configuration oversight.
Question 10 of 12 · Essential AI Knowledge
An organization is deploying an AI-powered customer service chatbot that must respond to user queries within 200ms. The ML team has a trained model but needs to optimize it for production deployment on NVIDIA GPUs. Which component of the NVIDIA software stack is specifically designed for this use case?
TensorRT is NVIDIA's inference optimization engine that takes trained models (from TensorFlow, PyTorch, etc.) and optimizes them for production deployment. It performs layer fusion, precision calibration (FP32→FP16→INT8), kernel auto-tuning, and graph optimization to minimize latency and maximize throughput on NVIDIA GPUs. For a 200ms latency requirement in production inference, TensorRT is the correct tool—it can reduce latency by 2-10x compared to unoptimized models.
Question 11 of 12 · AI Infrastructure
An enterprise AI team is designing storage for a training pipeline that processes 500TB of raw image data, requires 50GB/s aggregate read throughput during training, and needs to support 100+ concurrent preprocessing jobs. Which storage architecture BEST meets these requirements?
Parallel file systems like Lustre or GPFS with NVMe SSDs provide the aggregate bandwidth (50GB/s+), low latency, and concurrent access patterns required for distributed training. Multiple storage servers with NVMe deliver sustained high throughput, and parallel architecture prevents bottlenecks when 100+ jobs read simultaneously. This is the standard for large-scale AI training infrastructure.
Question 12 of 12 · AI Operations
During a PyTorch distributed training job across 4 nodes with 8 GPUs each (32 GPUs total), the job crashes with 'CUDA out of memory' errors despite each GPU having 80GB memory and the model requiring only 24GB per GPU. Monitoring shows GPU memory usage at 78GB per GPU before the crash. What is the BEST troubleshooting step?
The model requires 24GB but memory usage reaches 78GB—more than 3x expected. This indicates a memory leak, most commonly from gradient accumulation implementation errors where activations aren't properly freed between accumulation steps. Checking for this specific bug addresses the root cause: why memory consumption far exceeds model requirements.
Ready for the real thing?

The full course has two full-length practice tests, video lessons for every exam domain, hands-on labs and detailed answer explanations.

Start my full course on Udemy →

NCA-AIIO exam — quick answers

How much does the NCA-AIIO exam cost?

The exam fee is approximately $135 and varies by region — confirm current pricing with the certification vendor before you book.

What topics are on the exam?

It covers 3 domains: Essential AI Knowledge (38%), AI Infrastructure (40%), AI Operations (22%). The full course has a dedicated chapter, lab and practice-test coverage for each.

Is this practice test really free?

Yes — all questions on this page are free with explanations and no sign-up. The paid Udemy course adds two full-length timed exams, video lessons and hands-on labs.

Will this prepare me for the real exam?

The questions mirror the real exam's style and are mapped to the official domains. This is exam-focused preparation — combine the free test with the full course's timed simulations to gauge your readiness.

More free practice by exam domain:
Essential AI Knowledge →AI Infrastructure →AI Operations →