NVIDIA Generative AI Multimodal NCA-GENM Exam Questions

Page: 1 / 14
Total 56 questions
Question 1

You are tasked with developing an image processing model using machine learning. You need to classify thousands of labeled images of cats and dogs. Which algorithm is commonly used for image classification?



Answer : C

CNNs remain the standard architecture for image classification tasks of this kind, for the same structural reasons covered elsewhere in this set: convolutional layers exploit spatial locality and translation invariance in image data, learning hierarchical features --- edges and textures in early layers, parts and objects in deeper layers --- directly from labeled pixel data, without requiring hand-engineered features. With thousands of labeled cat/dog images, a CNN (trained from scratch or, more efficiently given the modest dataset size, fine-tuned from a pretrained backbone via transfer learning) is the practical, industry-standard choice.

Decision Trees (A) can technically be applied to hand-engineered image features, but they scale poorly to raw high-dimensional pixel input and cannot learn spatial hierarchies the way convolutional architectures do --- they're a reasonable choice for structured/tabular data, not raw image classification. K-Means Clustering (B) is unsupervised and would group images by similarity without using the provided labels at all, making it unsuitable for a labeled classification task where you already have ground-truth cat/dog annotations to learn from directly. Linear Regression (D) predicts continuous numeric outputs and is not designed for categorical classification; even logistic regression, its classification-oriented cousin, would struggle on raw pixels without the feature-learning capacity a CNN provides.

This mirrors a nearly identical question earlier in this set (10,000 cats/dogs/birds) --- expect the exam to test this CNN-for-images association repeatedly, sometimes with different distractor combinations.


Question 2

What advantage does multimodal learning have over unimodal learning?



Answer : B

Multimodal learning's principal advantage is access to complementary and, at times, redundant information across modalities that a single modality alone cannot provide --- enabling the model to capture richer, more nuanced patterns and relationships. A sentiment analysis system that sees only text misses tone-of-voice cues available in audio and facial expression cues available in video; combining all three lets the model resolve ambiguity that any single modality would leave unresolved (sarcasm detected via mismatched text sentiment and vocal tone, for instance). This complementarity is the substantive, well-evidenced advantage of multimodal approaches in the research literature.

The other options overstate or misstate multimodal learning's properties: it does not inherently require fewer data samples (A) --- in fact, multimodal models often require more data to learn reliable cross-modal correspondences, and can be more data-hungry in practice, particularly during pretraining. Reliability (C) is not an inherent, guaranteed property; multimodal systems introduce new failure modes, such as sensitivity to missing or corrupted modalities and to modality imbalance, that must be explicitly engineered against --- reliability is not automatic. Multimodal data is also not inherently easier to collect (D); acquiring synchronized, aligned data across multiple modalities (e.g., paired audio-video-text with accurate timestamps) is typically harder and more resource-intensive than collecting a single modality.


Question 3

In a Generative Adversarial Network (GAN), what is the role of the discriminator?



Answer : B

A GAN's discriminator is a binary classifier trained to distinguish real samples (drawn from the actual training data) from fake samples (produced by the generator), outputting a probability that a given input is real rather than generated. This is the discriminator's entire function --- it never generates data itself. The generator, by contrast, takes random noise as input and learns to produce increasingly realistic synthetic samples, with the explicit goal of fooling the discriminator into classifying its outputs as real.

Training proceeds as a minimax adversarial game: the discriminator's weights are updated to improve its ability to correctly classify real vs. fake, while the generator's weights are updated (using gradients that flow back through the discriminator) to make its outputs harder for the discriminator to detect as fake. As training progresses, both networks improve in tandem, ideally converging to a point where the generator produces samples statistically indistinguishable from real data and the discriminator can no longer reliably tell them apart (outputting close to 50% confidence either way).

Option A describes the generator's role, not the discriminator's --- a common point of confusion this question is testing directly. Option C is too vague to describe either network's specific function precisely. Option D conflates the discriminator with the general backpropagation/optimization process; while the discriminator's output does supply the gradient signal used to update the generator, 'calculating the loss function and updating the generator' overstates and mischaracterizes the discriminator's role as a classifier.


Question 4

Which of the following is a component of the Content Authenticity Initiative?



Answer : D

The Content Authenticity Initiative (CAI) --- the cross-industry effort NVIDIA participates in alongside Adobe, Microsoft, and other organizations, built on the C2PA (Coalition for Content Provenance and Authenticity) open technical standard --- centers on 'Content Credentials': tamper-evident metadata attached to digital content that records its provenance, including how, when, and with what tools (including generative AI systems) the content was created or edited. Content Credentials travel with the media file and can be cryptographically verified, giving viewers a way to trace an image or video's origin and edit history, which is increasingly important as generative AI makes synthetic media harder to distinguish from authentic content by inspection alone.

The other options are either too generic or describe adjacent-but-distinct concepts: 'content validity' (A) is not a defined CAI technical component; it reads as a plausible-sounding but non-specific distractor. 'Ethical AI development' (B) describes a broader Trustworthy AI value that CAI's work supports and relates to, but it is not itself a named CAI component or deliverable. 'Data encryption' (C) is a general information-security technique --- CAI's Content Credentials do use cryptographic signing to ensure tamper-evidence, but encryption (confidentiality) and the CAI's actual mechanism (verifiable, signed provenance metadata) are distinct concepts; CAI is about disclosure and traceability, not concealment.


Question 5

You are evaluating the performance of an AI model for facial recognition. What is an important consideration when evaluating the model for bias?



Answer : B

Bias evaluation for facial recognition centers on measuring whether the model's accuracy --- true positive rate, false positive rate, false match rate --- is consistent across demographic subgroups (race, gender, age), rather than assuming a single aggregate accuracy figure represents performance fairly for all groups. This concern is well grounded empirically: independent benchmarking, including NIST's Face Recognition Vendor Test studies, has repeatedly documented substantial accuracy disparities across demographic groups in widely deployed facial recognition systems, with error rates for some subgroups measured many times higher than for others --- a direct consequence of training data underrepresentation and the representativeness-bias issue covered elsewhere in this domain.

Processing speed (A) is a performance/latency engineering concern, not a bias or fairness concern --- a model could process all demographic groups at identical speed while still exhibiting severe accuracy disparities between them. Facial expression recognition capability (C) addresses a different task dimension (emotion/expression classification) than the identity-recognition bias question being asked. Operating system compatibility (D) is a software-deployment/engineering concern entirely unrelated to model fairness.

Subgroup accuracy disparities in facial recognition carry serious real-world consequences --- misidentification risk in law enforcement or access-control contexts --- which is why disaggregated (per-subgroup) evaluation, not just aggregate accuracy, is considered a baseline requirement under Trustworthy AI bias auditing practice.


Question 6

During the process of data cleansing, which of the following steps is NOT typically performed?



Answer : C

Data cleansing (or data cleaning) operates on data you already have: it identifies and resolves quality issues within an existing dataset --- handling missing values (A), removing duplicate records (D), correcting formatting or type inconsistencies (B), fixing structural errors, and standardizing units or encodings. Collecting additional data (C) belongs to a conceptually earlier and separate phase of the pipeline: data acquisition or data collection, which determines what data enters the pipeline in the first place, rather than what is done to improve the quality of data already collected.

This distinction matters operationally: a cleansing step is typically deterministic and reversible against the existing dataset (you can inspect, log, and audit exactly which rows were dropped or imputed), whereas collecting more data is a scoping decision that may require new labeling budgets, new consent/privacy review, or new data-source integration --- a materially different workflow with different stakeholders.

That said, insufficient data volume discovered *during* cleansing (e.g., after removing corrupted records the sample size becomes too small for the target class) can trigger a decision to go back and collect more --- but that action itself is not classified as a cleansing step; it is the trigger for restarting an earlier pipeline stage.


Question 7

In the context of multimodal machine learning, what does 'data fusion' refer to?



Answer : B

Data fusion is the process of combining information from multiple modalities into a single, unified representation that a downstream model can act on. As covered in the early-fusion and late-fusion questions elsewhere in this set, fusion can occur at different pipeline stages --- raw/feature-level (early), intermediate representation level (hybrid), or decision level (late) --- but in every case the defining operation is combination, not separation.

Option A describes the inverse operation and does not correspond to any standard multimodal technique under the name 'fusion.' Option C describes missing-data handling or imputation, a data-quality concern that is often addressed *before* fusion (a model needs some representation for each modality, even an imputed or masked one, before combining them) but is not fusion itself. Option D describes evaluation or quality assessment, a distinct concern from the mechanical act of combining modalities into one representation.

Fusion technique choice has real architectural consequences: early fusion assumes tight temporal/spatial correspondence between modalities and is sensitive to missing streams; late fusion is more robust to missing or noisy modalities since each unimodal branch can still contribute independently; hybrid/intermediate fusion, common in modern transformer-based multimodal architectures via cross-attention, aims to capture the benefits of both while mitigating each one's weaknesses.


Page:    1 / 14   
Total 56 questions