NCA-ADS domain - 6% of the exam

Software and Environment Management

Software and Environment Management is 6% of the NVIDIA-Certified Associate: Accelerated Data Science (NCA-ADS) exam. These are the objectives it covers, each with practice questions and worked explanations.

Objectives in this domain

Sample question from this domain

Free sampleSoftware and Environment Managementeasy

A data scientist pins all package versions in a conda environment YAML file and commits a conda lock file to the project repository. A colleague clones the repository six months later and rebuilds the environment. Which outcome does this practice most directly guarantee?

  • AThe rebuilt environment will contain exactly the same package versions as the original, so the pipeline behaviour is reproducible regardless of when it is rebuilt. Correct
  • BThe rebuilt environment will use the latest compatible releases of each package, taking advantage of bug fixes published after the original pin.
  • CThe lock file prevents any two projects on the same machine from installing conflicting packages, because conda enforces global version uniqueness.
  • DThe GPU drivers on the colleague's machine are automatically matched to the CUDA version recorded in the lock file, ensuring hardware compatibility.
Explain how exact version pinning and lock files ensure reproducible environments across different machines and time periods. When every package is pinned to an exact version and a lock file records all direct and transitive dependencies, any subsequent environment rebuild resolves to the same set of packages. This is the primary mechanism for reproducibility: a pipeline that passed testing continues to behave identically on a different machine or months later because no resolver can silently select a newer release. Without pinning, a solver might pick a newer minor version of cuDF or NumPy that changes a default argument or deprecates a code path, breaking the pipeline in subtle ways that are difficult to diagnose.

Why A is correct: Exact version pins combined with a lock file record every direct and transitive dependency at a specific version. Any later rebuild resolves identically, eliminating the risk that a newer release changes pipeline behaviour.

Why B is wrong: Pinning exact versions prevents any upgrade, so the latest releases are not fetched. This describes the behaviour of an unpinned or range-constrained environment, not a pinned one.

Why C is wrong: A lock file records versions for one environment; it does not enforce cross-environment uniqueness. Conda environments are isolated per-environment, not globally, so two projects can use different versions of the same package without conflict.

Why D is wrong: Lock files track Python package versions, not host driver installation. GPU driver compatibility must be managed separately; a mismatch between the recorded CUDA toolkit version and the installed driver will still cause runtime errors.

Other domains in this exam

See also the NCA-ADS cert hub, the study guide, and the cheat sheet.

Examworthy is not affiliated with or endorsed by NVIDIA. Original, blueprint-aligned practice material only.