NVIDIA

NVIDIA-Certified Associate: Generative AI Multimodal (NCA-GENM) practice questions

Foundational multimodal generative AI knowledge across text, image, and audio for the NVIDIA-Certified Associate Generative AI Multimodal exam.

New to NCA-GENM? Read the how to pass NVIDIA-Certified Associate: Generative AI Multimodal study guide for a domain breakdown, a study plan, and exam-day tips.

Revising? The NCA-GENM cheat sheet puts the domain weightings, key facts, and easy-to-confuse traps on one printable page.

50 to 60
Questions
60 min
Time allowed
$125
Exam cost (USD)
328
Practice questions

Exam domains and weighting

The NCA-GENM blueprint is split across 7 domains. See the official exam guide for the authoritative breakdown.

NCA-GENM exam domain weighting - each domain's share of the exam. Full breakdown with links below.
NCA-GENM domains by share of the exam
DomainWeight
Experimentation25%
Core Machine Learning and AI Knowledge20%
Multimodal Data15%
Software Development15%
Data Analysis and Visualization10%
Performance Optimization10%
Trustworthy AI5%

Free sample questions

No account needed. Every question has a worked explanation, just like the full bank.

Free sampleCore Machine Learning and AI Knowledgemedium

A pipeline ingests 16-bit greyscale medical images and feeds them into a convolutional network. Before training, each pixel value is divided by 65535 so the resulting tensor contains values in the range 0 to 1. What is the primary reason for this operation?

  • ATo normalise input values so that large pixel magnitudes do not cause unstable gradients during back-propagation, improving training convergence. Correct
  • BTo reduce the spatial resolution of the image so that fewer parameters are needed in the first convolutional layer.
  • CTo convert the integer pixel values into a floating-point representation that is compatible with the network's activation functions and loss computation.
  • DTo apply zero-mean standardisation so that each channel has a mean of zero and a standard deviation of one before entering the network.
Explain why pixel-value normalisation is applied to image tensors before neural-network training. Dividing raw pixel values by the maximum representable value maps all inputs to the closed interval 0 to 1. Neural networks trained on unnormalised inputs with very large magnitudes experience large activation values, which produce large loss gradients and can cause weight updates to overshoot, destabilising training. Bounded inputs keep the gradient signal well-conditioned throughout back-propagation, which is the primary purpose of this pre-processing step.

Why A is correct: Scaling inputs to a small, bounded range keeps weight gradients in a workable magnitude, preventing exploding gradients and accelerating convergence - the canonical motivation for input normalisation.

Why B is wrong: Dividing pixel values by a constant does not alter the spatial dimensions of the tensor; downsampling requires pooling or strided convolutions, not scalar division.

Why C is wrong: Casting to float is a necessary step, but the division itself is not required for the cast; the primary motivation is gradient stability from bounded inputs, not merely the numeric type.

Why D is wrong: Dividing by the maximum value scales to the unit interval but does not produce zero-mean output; standardisation requires subtracting the dataset mean and dividing by its standard deviation.

Free sampleCore Machine Learning and AI Knowledgemedium

An audio classification model must process raw waveform recordings. A data engineer proposes converting each recording to a mel-frequency spectrogram before passing it to a 2-D convolutional network. What does this conversion accomplish in terms of the tensor representation fed to the network?

  • AIt encodes the waveform as a 1-D sequence of amplitude samples that the convolutional layers treat as a single-channel time-series.
  • BIt transforms the time-domain signal into a 2-D frequency-versus-time tensor whose values represent energy in perceptually scaled frequency bands, suitable for image-like convolution. Correct
  • CIt compresses the audio into a fixed-length dense vector using a pre-trained acoustic encoder, removing the need for further spatial feature extraction.
  • DIt converts the waveform into a sequence of discrete tokens by quantising amplitude values, matching the input format expected by transformer-based language models.
Describe how a mel-frequency spectrogram transforms raw audio into a tensor representation suitable for 2-D convolutional neural networks. A mel-frequency spectrogram is produced by computing the Short-Time Fourier Transform on overlapping frames of the waveform, applying a bank of triangular filters spaced on the mel scale, and taking the log of the resulting energy values. The output is a 2-D matrix where one axis represents time frames and the other represents mel frequency bins. This 2-D structure lets standard convolutional architectures detect patterns in both time and frequency jointly, in the same way they detect spatial patterns in images.

Why A is wrong: A raw waveform is already a 1-D amplitude sequence; converting to a spectrogram produces a 2-D frequency-time representation, not a 1-D sequence.

Why B is correct: A mel spectrogram applies the Short-Time Fourier Transform followed by mel filterbank projection, yielding a 2-D matrix of log-energy values indexed by mel-scaled frequency and time. This format exposes both temporal and spectral structure and can be processed by 2-D convolutional filters the same way an image is.

Why C is wrong: A spectrogram is computed by a deterministic signal-processing transform, not by a learned encoder. It produces a variable-length 2-D array rather than a fixed-length embedding vector.

Why D is wrong: Amplitude quantisation into discrete tokens is used in codebook-based audio codecs such as EnCodec, not in mel-spectrogram extraction. Mel spectrograms are continuous-valued, not token sequences.

Free sampleCore Machine Learning and AI Knowledgemedium

When preparing text for a transformer-based language model, a developer must choose between passing raw one-hot character vectors and using a learned dense embedding layer. Which statement best describes the practical advantage of learned dense embeddings over raw one-hot vectors for this purpose?

  • ADense embeddings guarantee that semantically related tokens are always placed at equal distances from each other in the embedding space before any training begins.
  • BDense embeddings eliminate the need for tokenisation because they operate directly on raw character byte values without any vocabulary mapping.
  • CDense embeddings reduce the input dimensionality from the vocabulary size to a much smaller continuous space, and the learned geometry encodes semantic relationships between tokens. Correct
  • DDense embeddings convert token indices into fixed sinusoidal signals that provide the model with absolute position information across the input sequence.
Compare one-hot token representations with learned dense embeddings and identify their key functional differences for neural-network text processing. One-hot encoding represents each token as a sparse vector of length equal to the vocabulary size, with all zeros except a single one at the token's index. This representation treats every pair of tokens as equally dissimilar and is computationally expensive for large vocabularies. A learned dense embedding replaces each index with a trainable vector of much smaller dimension. Back-propagation adjusts these vectors so that tokens appearing in similar contexts end up geometrically close, encoding semantic and syntactic relationships that allow the model to generalise. The lower dimensionality also reduces memory usage and computation in subsequent layers.

Why A is wrong: Embeddings are randomly initialised before training; semantic relationships emerge through gradient updates on task data, they are not guaranteed at initialisation.

Why B is wrong: An embedding layer still requires a tokenisation step to map input text to integer indices; it replaces the one-hot lookup but does not remove the tokenisation or vocabulary mapping requirement.

Why C is correct: One-hot vectors have dimensionality equal to the vocabulary size and are completely orthogonal, encoding no similarity between tokens. A learned embedding projects each token into a low-dimensional continuous space where the training objective shapes the geometry so that related tokens cluster together, enabling the network to generalise across synonyms and related concepts.

Why D is wrong: Sinusoidal positional encodings are a separate addition to token embeddings, not a property of the token embedding layer itself. The two components serve distinct purposes and are added together rather than merged into one.

Frequently asked questions

How many questions are on the NCA-GENM exam?
The NVIDIA-Certified Associate: Generative AI Multimodal (NCA-GENM) exam has 50 to 60 questions and runs for 60 minutes. The format is multiple choice, online proctored.
What score do I need to pass NCA-GENM?
NVIDIA does not publish a fixed pass mark for NCA-GENM, 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-GENM exam cost?
The exam costs 125 USD to sit. Practising on Examworthy is free to start, with a worked explanation on every question.
Is there a NCA-GENM practice exam?
Yes. Examworthy's exam mode runs a timed NCA-GENM practice exam (mock) paced to match the real exam, scored per domain so you can see exactly where you stand against the blueprint. Timed mocks are free with an account.
How does Examworthy help me prepare for NCA-GENM?
Every practice question carries a worked explanation and a per-distractor rationale, mapped to the official blueprint domains. You learn why each answer is right or wrong, 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: Generative AI Multimodal.

Browse all certifications

Examworthy is not affiliated with or endorsed by NVIDIA. All questions are original, blueprint-aligned practice material. We never reproduce live exam items. NCA-GENM and related marks belong to their respective owners.