NVIDIA-Certified Associate: AI Infrastructure and Operations (NCA-AIIO) practice questions
Foundational AI infrastructure and operations knowledge - GPU architecture, the NVIDIA software stack, data centre networking, and operations - for the NVIDIA-Certified Associate AI Infrastructure and Operations exam.
No account needed. Every question explains why every answer is right or wrong, just like the full bank.
lock_openFree sampleAI Operationsmedium
A research team submits a distributed training job that requires 16 GPUs spread across 4 nodes. The job fails to start because the scheduler allocates only 3 of the 4 nodes before a competing job claims the fourth. Which scheduling strategy is specifically designed to prevent this outcome?
AGang scheduling, which holds all required nodes in reserve and starts all processes simultaneouslycheck_circle Correct
BFair-share scheduling, which divides available GPU resources proportionally among all active users
CPreemptive scheduling, which evicts lower-priority jobs to free resources for higher-priority requests
DBackfill scheduling, which slots smaller jobs into idle windows left by reserved future allocations
Explain how gang scheduling prevents partial-allocation failures in multi-node distributed GPU training jobs. Gang scheduling (also called co-scheduling) treats all processes of a distributed job as a single indivisible unit. The scheduler withholds the job from running until every required slot on every required node is available at the same instant, then launches all ranks together. This is essential for tight-coupling frameworks such as MPI or PyTorch distributed training where all ranks must communicate from the first iteration. Without gang scheduling, partial allocations stall indefinitely, wasting the already-allocated GPUs and blocking other work.
Why A is correct: Gang scheduling ensures every process in a distributed job is launched at the same time across all required nodes. This atomic allocation eliminates the partial-allocation deadlock where some nodes are claimed by competing jobs before the full gang is assembled.
Why B is wrong: Fair-share scheduling governs resource equity across users over time, but it does not guarantee that all nodes for a single job are reserved simultaneously, so the same partial-allocation race can still occur.
Why C is wrong: Preemptive scheduling can reclaim resources from lower-priority jobs, but it does not inherently co-allocate all nodes at once. A preempted node may become available only after the remaining nodes are already taken by other jobs.
Why D is wrong: Backfill scheduling improves cluster utilisation by filling gaps around reserved slots, but it is not the mechanism that guarantees simultaneous allocation of all nodes for a single multi-node job.
lock_openFree sampleAI Infrastructuremedium
A team is preparing to train a large language model whose total memory footprint - accounting for model parameters, intermediate activations, and optimiser states - comfortably exceeds the capacity of a single GPU. Which infrastructure decision most directly addresses this constraint?
AReplace the GPUs with DPUs to offload memory management to a dedicated data-processing unit.
BSwitch to a higher-throughput Ethernet fabric between nodes, as network latency is the bottleneck that prevents the model fitting in memory.
CIncrease fast NVMe storage capacity so the model can be streamed from disk into GPU memory in chunks during the forward pass.
DDistribute the model across multiple GPUs so the combined memory across the pool can hold all training states simultaneously.check_circle Correct
Determine when and why a model's training memory footprint requires distribution across multiple GPUs. GPU memory must simultaneously hold model parameters, intermediate activations produced during the forward pass, and optimiser states such as first and second moment estimates. When this combined footprint exceeds the capacity of a single GPU, the model must be partitioned across multiple GPUs using strategies such as tensor parallelism or pipeline parallelism. DPUs and storage upgrades do not expand the GPU memory pool available to the training process.
Why A is wrong: DPUs handle networking, storage, and security offload from the CPU; they have no general-purpose tensor compute memory that substitutes for GPU VRAM in training workloads.
Why B is wrong: Network throughput affects gradient synchronisation speed but does not change how much GPU memory is available; upgrading the fabric cannot make a model fit in memory it does not have.
Why C is wrong: While CPU offload and disk-backed parameter swapping exist as workarounds, they introduce severe performance penalties; the standard architectural decision is to add GPUs until combined memory is sufficient, not to rely on disk streaming.
Why D is correct: When a model's parameters, activations, and optimiser states together exceed one GPU's memory, spreading them across multiple GPUs is the standard solution - each GPU holds a partition of the total working set.
lock_openFree sampleAI Operationsmedium
An HPC cluster runs a mix of short interactive jobs and long batch training jobs. The site administrator wants to ensure that no single user or project monopolises GPU nodes over a rolling seven-day window. Which Slurm mechanism is most appropriate for implementing this policy?
AJob array limits, which cap the number of simultaneously running tasks within a single array submission
BFair-share scheduling with decay-based usage accounting, which deprioritises users who have consumed a large share of resources recentlycheck_circle Correct
CPartition time limits, which define the maximum wall-clock duration allowed per job in a given queue
DGRES (Generic Resource) constraints, which restrict how many GPU resources a job may request in a single submission
Identify the Slurm fair-share mechanism that enforces proportional GPU access across users over a rolling time window. Slurm's fair-share scheduler computes a usage factor for each account based on allocated resources over a decay window (commonly seven days). Jobs from accounts whose recent usage is below their fair-share target receive a priority boost, while accounts that have over-consumed receive a penalty. This dynamic reprioritisation prevents any single user or project from perpetually dominating the cluster without requiring hard quotas that would leave GPUs idle when under-utilised accounts are inactive.
Why A is wrong: Job array limits constrain concurrency within a single submission from one user, but they do not account for historical consumption across all users over a time window.
Why B is correct: Slurm's fair-share plugin tracks each account's historical resource consumption using a decay factor over a configurable window. Users or accounts that have consumed more than their proportional share receive lower scheduling priority, naturally redistributing access without hard quotas.
Why C is wrong: Partition time limits bound how long a single job may run, which can indirectly reduce monopolisation, but they do not track cumulative usage across users over a rolling period.
Why D is wrong: GRES constraints limit the resource request for an individual job submission but do not track cumulative consumption across multiple jobs or users over time.
The NVIDIA-Certified Associate: AI Infrastructure and Operations (NCA-AIIO) exam has 50 questions and runs for 60 minutes. The format is multiple choice, online proctored.
What score do I need to pass NCA-AIIO?
NVIDIA does not publish a fixed pass mark for NCA-AIIO, so treat any "X%" figure you see elsewhere as unofficial. Examworthy gives you a per-domain readiness score so you can judge when you are ready across every domain.
How much does the NCA-AIIO exam cost?
The exam costs 125 USD to sit. Practising on Examworthy is free to start, and every answer is explained, right and wrong.
Is there a NCA-AIIO practice exam?
Yes. Examworthy's exam mode runs a timed NCA-AIIO practice exam (mock) paced to match the real exam, scored per domain so you can see exactly where you stand. Timed mocks are free with an account.
How does Examworthy help me prepare for NCA-AIIO?
Every practice question explains why the right answer is right and why each wrong one is wrong, mapped to the official blueprint domains. You learn the reasoning, not just the letter.
Is Examworthy affiliated with NVIDIA?
No. Examworthy is not affiliated with or endorsed by NVIDIA. Our questions are original, blueprint-aligned practice material; we never reproduce live exam items.
Related certifications
More certifications you can practise on Examworthy, related to NVIDIA-Certified Associate: AI Infrastructure and Operations.
Examworthy is not affiliated with or endorsed by NVIDIA. All questions are original, blueprint-aligned practice material. We never reproduce live exam items. NCA-AIIO and related marks belong to their respective owners.