NCA-GENL domain - 14% of the exam

Data Analysis and Visualization

Data Analysis and Visualization is 14% of the NVIDIA-Certified Associate: Generative AI LLMs (NCA-GENL) exam. These are the objectives it covers, each with practice questions and worked explanations.

Objectives in this domain

Sample question from this domain

Free sampleData Analysis and Visualizationeasy

A team is fine-tuning a text classifier but has only 500 labelled training samples. Which data augmentation technique is most likely to preserve the original label while increasing the number of training examples?

  • ARandomly shuffling the order of sentences within each document
  • BTruncating each document to exactly half its original word count
  • CTranslating documents into a different language and discarding originals
  • DReplacing selected words with synonyms drawn from a lexical database Correct
Identify synonym replacement as a label-preserving text augmentation strategy that increases training data diversity. Synonym replacement draws on a lexical resource to swap individual words with meaning-equivalent alternatives. Because the substitution is meaning-preserving, the ground-truth label remains valid, and the modified sentence exposes the model to varied surface forms of the same concept. This directly addresses data scarcity without requiring new human annotations.

Why A is wrong: Shuffling sentences is tempting because it creates new document orderings, but it disrupts coherence and often changes the meaning enough to corrupt the original label, making it unreliable for classification tasks.

Why B is wrong: Truncation is tempting as a quick resize step, but removing half the content frequently drops sentiment cues or key facts, altering what the label should be and reducing information available to the model.

Why C is wrong: Translation alone changes the language domain, and discarding originals removes the source-language distribution the classifier needs; this is not standard augmentation but rather domain shift.

Why D is correct: Synonym replacement substitutes words with semantically equivalent alternatives, keeping the overall meaning and therefore the class label intact while producing a distinct token sequence the model has not seen before.

Other domains in this exam

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

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