NCA-AIIO Study Guide & Cheat Sheet

A free study guide for the NCA-AIIO exam (NCA-AIIO) β€” exam facts, the domain breakdown, study tips, a topic cheat sheet, and a full glossary. No sign-up needed.

Ready to practice? Take the free NCA-AIIO practice quiz →  Β·  Get the full exam prep →

NCA-AIIO Exam Guide

Questions50 multiple choice
Time limit60 minutes (just over a minute per question)
Price$125 USD
DeliveryOnline, remotely proctored
ScoringPass/fail β€” NVIDIA does not report a numeric score
Validity2 years, then retake to recertify
PrerequisitesNone formal; basic data center knowledge recommended
LanguageEnglish

Exam domains

DomainWeightWhat it covers
AI Infrastructure40%GPU hardware and sizing, accelerated clusters, data center networking (InfiniBand, RoCE, east-west fabrics), power and cooling, facility requirements, DPUs, and on-prem vs cloud trade-offs. The biggest domain β€” roughly 20 of your 50 questions.
Essential AI Knowledge38%AI vs ML vs DL, why AI took off, training vs inference, GPU vs CPU architecture, the NVIDIA software stack (CUDA, NGC, TensorRT, Triton, AI Enterprise), the AI development life cycle, and industry use cases. Roughly 19 of 50 questions.
AI Operations22%Running the cluster: job scheduling and orchestration (Slurm, Kubernetes, GPU Operator), GPU monitoring and health (DCGM, utilization, temperature, power), and virtualization choices (MIG, vGPU, passthrough). Roughly 11 of 50 questions.

Who it’s for: Data center technicians, DevOps and networking engineers, IT managers, sysadmins, solution architects, and technical sales β€” anyone who runs, supports, or sells AI infrastructure.

Study & test-day tips

  • Budget your time: 50 questions in 60 minutes leaves about 70 seconds each. Answer what you know fast, flag the rest, and come back.
  • The exam is conceptual, not a spec sheet. Know what NVLink, DPUs, MIG, and DCGM are FOR β€” not their generation-by-generation bandwidth numbers.
  • Read for the qualifier words: 'most likely', 'primary purpose', 'best fits'. Two options are usually defensible; the qualifier picks the winner.
  • Map every study hour to the blueprint: AI Infrastructure is 40% of the exam β€” if your practice accuracy is weakest there, that's where hours pay off most.
  • Think 'what problem does this solve?' for every technology. Exam distractors are usually real technologies attached to the wrong problem.
  • Training vs inference is a recurring lens: throughput vs latency, batch vs real-time, datacenter vs edge. Many questions hinge on knowing which side you're on.
  • For scenario questions, identify the bottleneck first (compute, memory, network, storage, data pipeline) β€” the right answer almost always addresses that specific bottleneck.
  • Don't leave blanks. There's no penalty for guessing β€” eliminate two options and pick the more specific remaining answer.
  • Take the timed mock in this app at least twice before booking. The time pressure, not the content, is what surprises most first-time candidates.
  • Book the exam when your practice readiness is consistently 80%+. The real exam is pass/fail, so you want margin, not a coin flip.

Cheat sheet

Hardware & interconnects

  • GPU vs CPU: thousands of simple parallel cores + high memory bandwidth vs few complex cores optimized for sequential work
  • NVLink: direct GPU-to-GPU interconnect inside a server β€” far faster than PCIe
  • NVSwitch: switch fabric that lets every GPU in a node talk to every other at full NVLink speed
  • DPU (BlueField): offloads networking, storage, and security from the host CPU; isolates infrastructure from tenant workloads
  • MIG: partitions one GPU into up to 7 hardware-isolated instances (compute + memory)

Networking

  • InfiniBand: lowest-latency, highest-bandwidth fabric for multi-node training
  • RoCE: RDMA over Converged Ethernet β€” direct memory-to-memory transfers on Ethernet hardware
  • East-west traffic (node-to-node) dominates AI clusters; design for non-blocking bandwidth between GPU nodes
  • Distributed training = frequent gradient synchronization (all-reduce) β€” network becomes the bottleneck as you scale nodes

Facilities

  • AI racks draw several times the power of enterprise racks β€” plan power delivery, floor loading, and cooling per rack
  • Liquid cooling (direct-to-chip, rear-door) appears when rack density exceeds what air can remove
  • On-prem: control, predictable cost at high utilization. Cloud: elasticity, no capex, fast start β€” best for bursty or exploratory work

NVIDIA software stack

  • CUDA: the parallel computing platform everything else builds on
  • NGC: catalog of GPU-optimized containers, pretrained models, SDKs
  • TensorRT: optimizes trained models for fast inference
  • Triton Inference Server: serves models from any framework at scale
  • NVIDIA AI Enterprise: the supported, validated enterprise software suite
  • DCGM: fleet-level GPU monitoring, health, and diagnostics

Operations

  • Slurm: HPC-style batch job scheduler (queues, partitions, priorities)
  • Kubernetes + GPU Operator: container orchestration with automated GPU driver/runtime/monitoring setup
  • Low GPU utilization usually means a starved data pipeline, not broken GPUs β€” check input/storage/CPU preprocessing first
  • Monitor utilization, memory, temperature, power, ECC errors; heat = throttling = silent performance loss
  • vGPU: share GPUs across many light VMs (VDI, notebooks). Passthrough/bare metal: maximum performance for training

Core AI concepts

  • AI βŠƒ ML βŠƒ DL (deep learning uses many-layered neural networks)
  • Training: heavy, iterative, throughput-oriented. Inference: serving predictions, latency-oriented
  • AI's rise = big data + GPU compute + better algorithms (all three together)
  • AI lifecycle: data prep β†’ train/validate β†’ deploy β†’ monitor β†’ retrain

Glossary

All-reduce
The collective communication step in distributed training where every node exchanges and combines gradient updates each iteration.
BlueField
NVIDIA's DPU product line β€” a programmable processor on the network card that offloads infrastructure tasks from the host CPU.
CUDA
NVIDIA's parallel computing platform and programming model that lets software run general-purpose computation on GPUs.
cuDNN
NVIDIA's GPU-accelerated library of deep learning primitives (convolutions, attention, etc.) used by frameworks like PyTorch and TensorFlow.
DCGM
Data Center GPU Manager β€” NVIDIA's tool for monitoring GPU health, telemetry, and diagnostics across a fleet.
DGX
NVIDIA's line of purpose-built AI systems combining multiple GPUs, NVLink/NVSwitch, and tuned software.
DPU
Data Processing Unit β€” offloads networking, storage, and security from the host CPU and isolates infrastructure from workloads.
East-west traffic
Server-to-server traffic inside the data center; dominates AI clusters due to gradient synchronization.
Gradient synchronization
Exchanging weight updates between workers in distributed training so all copies of the model stay consistent.
HBM
High Bandwidth Memory β€” the stacked, very fast memory on data center GPUs that feeds their thousands of cores.
InfiniBand
A high-bandwidth, low-latency network fabric widely used to connect nodes in AI and HPC clusters.
Inference
Running a trained model on new inputs to produce predictions; typically latency-sensitive.
Kubernetes
Container orchestration platform; with NVIDIA's GPU Operator it automates the GPU software stack for AI workloads.
MIG
Multi-Instance GPU β€” partitions one physical GPU into up to seven isolated instances with dedicated compute and memory.
MLOps
The practice and tooling for taking ML models through data prep, training, deployment, and monitoring repeatably.
NCCL
NVIDIA Collective Communications Library β€” optimized multi-GPU/multi-node communication primitives (like all-reduce) used in distributed training.
NGC
NVIDIA's catalog of GPU-optimized containers, pretrained models, and SDKs.
NVIDIA AI Enterprise
The supported, validated enterprise suite of NVIDIA's AI software for production deployments.
NVLink
NVIDIA's direct GPU-to-GPU interconnect, much faster than PCIe, for multi-GPU systems.
NVSwitch
A switch chip that connects many GPUs at full NVLink bandwidth so all GPUs in a system can communicate simultaneously.
Parallel file system
Shared storage (e.g., Lustre-class) that delivers high-throughput data access to many compute nodes at once.
PCIe
The standard expansion bus connecting GPUs to CPUs; slower than NVLink for GPU-to-GPU communication.
PUE
Power Usage Effectiveness β€” total facility power divided by IT equipment power; closer to 1.0 means a more efficient data center.
RDMA
Remote Direct Memory Access β€” one server reads/writes another's memory directly, bypassing the CPU and OS network stack.
RoCE
RDMA over Converged Ethernet β€” brings RDMA's low latency to Ethernet fabrics.
Slurm
A widely used HPC job scheduler that queues, prioritizes, and places batch jobs (including GPU training) across a cluster.
TensorRT
NVIDIA's SDK that optimizes trained models (precision, fusion, tuning) for fast inference.
Throttling
A GPU automatically reducing clock speeds to protect itself when too hot or power-limited β€” silently degrading performance.
Training
The compute-intensive process of learning model weights from data; throughput-oriented, often distributed.
Triton Inference Server
NVIDIA's open-source server for deploying models from any framework at scale with dynamic batching.
vGPU
NVIDIA virtual GPU β€” shares physical GPUs across multiple virtual machines, suited to lighter, fragmented workloads.
Utilization
The share of time a GPU is doing work; persistently low utilization usually signals a starved data pipeline.

Put it into practice

Studying is step one β€” practice questions are where it sticks. Start with free NCA-AIIO practice questions, then go Pro for the full ~300-question bank, timed mocks, and an AI tutor.

HOW TO // AI is not affiliated with or endorsed by NVIDIA. NCA-AIIO is a certification of NVIDIA Corporation; we reference it descriptively. All content is original.

Practice for every AI & cloud cert

Frequently asked questions

How much does the NVIDIA NCA-AIIO exam cost?

$125 USD, taken online with remote proctoring.

How many questions is NCA-AIIO and how is it scored?

50 multiple-choice questions in 60 minutes. Scoring is pass/fail β€” NVIDIA does not report a numeric score, so aim for consistent 80%+ practice results before booking.

How long is the NCA-AIIO certification valid?

2 years, after which you retake the exam to recertify.

How hard is NCA-AIIO?

It is an associate-level, conceptual exam β€” it tests what technologies like MIG, DCGM, NVLink, and Slurm are for, not command syntax. There are no formal prerequisites, though basic data center knowledge helps. AI Infrastructure is the biggest domain at 40% of questions.

Scroll to Top