TechNuggets Academy
NCA-GENM

Free NVIDIA-Certified Associate: Generative AI Multimodal Practice Test

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

Exam fee ~$1257 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 · Core Machine Learning and AI Knowledge
A creative studio needs to generate photorealistic product images from text prompts, with the ability to trade off generation speed against output fidelity by adjusting the number of denoising steps. Which model family BEST meets this requirement?
Diffusion models generate images through an iterative denoising process; the number of sampling/denoising steps is a tunable knob that directly trades inference speed for image quality, which is the exact requirement described.
Question 2 of 12 · Experimentation
A team generates images from text captions using a diffusion model and needs a metric that measures how well each generated image semantically matches its input caption, rather than just how realistic the image looks overall. Which metric should they use?
CLIP score computes the cosine similarity between the CLIP embedding of the generated image and the CLIP embedding of the input text caption, directly measuring text-image semantic alignment.
Question 3 of 12 · Multimodal Data
A team is building a text-to-image generation model but only has 50,000 unpaired images and 200,000 unpaired text captions with no explicit image-text correspondence. Which approach BEST addresses this data limitation before training a paired text-to-image model?
Pretrained alignment models can score or retrieve the most semantically similar text-image pairs, creating usable pseudo-paired training data from otherwise unpaired sources — a standard practice for bootstrapping multimodal datasets.
Question 4 of 12 · Software Development and Engineering
A company needs a text-to-image generation service that must respond to individual user requests within 200ms, with unpredictable and spiky traffic patterns throughout the day. Which deployment pattern BEST meets these requirements?
Sub-200ms response times with unpredictable traffic require a real-time microservice architecture that can scale instances up/down (autoscaling) and use dynamic batching to maximize GPU throughput without violating latency SLAs.
Question 5 of 12 · Data Analysis and Visualization
A team trains a multimodal embedding model aligning image and text representations using a contrastive objective. After training, they project the embeddings using UMAP and observe that image embeddings and text embeddings for the same underlying concept form two separate, distant clusters instead of overlapping by concept. What does this MOST likely indicate?
When cross-modal alignment succeeds, embeddings for the same concept from different modalities should occupy the same region of the shared space. Modality-based clustering rather than concept-based clustering is a classic visual sign of failed or incomplete alignment.
Question 6 of 12 · Performance Optimization
A company deploys a multimodal vision-language model for inference on a single NVIDIA GPU. The model's FP32 weights exceed available GPU memory, but the team cannot retrain or fine-tune due to a tight deployment deadline. Which technique BEST resolves this memory constraint?
Post-training quantization (e.g., to INT8) reduces weight and activation memory footprint immediately, without requiring retraining or fine-tuning, making it the fastest path to fit the model in available GPU memory.
Question 7 of 12 · Trustworthy AI
A company deploys a multimodal generative AI assistant that answers customer questions using text, images, and retrieved documents. Compliance requires the assistant to refuse to generate outputs about competitor products, avoid toxic language, and stay within an approved topic scope even when users attempt prompt injection. Which solution BEST meets these requirements?
A programmable guardrails layer sits between the user and the model, inspecting inputs and outputs against defined policies (topic, safety, moderation) at runtime and can block or rewrite responses even under adversarial prompt injection — exactly the enforcement point NVIDIA NeMo Guardrails provides.
Question 8 of 12 · Core Machine Learning and AI Knowledge
An NLP application must generate long, coherent paragraphs where a word at the end of a document can depend on context from thousands of tokens earlier. Which architectural mechanism makes this long-range dependency modeling practical at scale?
Self-attention lets every token directly attend to every other token in the sequence in parallel, giving transformers efficient, scalable long-range dependency modeling that RNNs and CNNs struggle with.
Question 9 of 12 · Experimentation
A company's generative AI assistant must answer questions about internal policy documents that are updated weekly, and the team cannot afford to retrain the model each time content changes. Which adaptation strategy BEST meets this requirement?
RAG retrieves fresh, relevant document chunks at inference time and injects them into the prompt, so the model always has access to current information without any retraining when the underlying documents change.
Question 10 of 12 · Multimodal Data
When configuring a Vision Transformer (ViT)-based image encoder for a multimodal model, reducing the patch size from 16x16 to 8x8 pixels while keeping image resolution constant has which primary effect?
Smaller patches mean more patches per fixed image size, producing more tokens for the transformer sequence, which increases granularity but also quadratically increases self-attention compute cost.
Question 11 of 12 · Software Development and Engineering
Which NVIDIA Triton Inference Server feature automatically groups multiple incoming inference requests into a single batch to improve GPU utilization and throughput, without requiring the client to batch requests manually?
Dynamic batching is the Triton scheduler feature that combines individual client requests arriving within a configurable window into larger batches to better utilize GPU compute, transparently to the client.
Question 12 of 12 · Data Analysis and Visualization
Which Python tool combination is most commonly used to plot training loss and evaluation metric curves over epochs when working with NVIDIA generative AI training frameworks such as NeMo?
Matplotlib is the standard Python plotting library for rendering line charts of loss/metric curves, and TensorBoard is the standard logging backend used with NVIDIA training frameworks (including NeMo) to track and visualize these curves during and after training.
Ready for the real thing?

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

$99.99 $34.99 with code FREETEST33 — valid through September 9.

Get my $34.99 deal →

NCA-GENM exam — quick answers

How much does the NCA-GENM exam cost?

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

What topics are on the exam?

It covers 7 domains: Core Machine Learning and AI Knowledge (~20%), Experimentation (~25%), Multimodal Data (~15%), Software Development and Engineering (~15%), Data Analysis and Visualization (~10%), Performance Optimization (~8%), Trustworthy AI (~7%). 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.

How do I get the discount?

Use code FREETEST33 at checkout for $34.99 (list $99.99) through September 9 — the enroll button applies it automatically.

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:
Core Machine Learning and AI Knowledge →Experimentation →Multimodal Data →Software Development and Engineering →