Home › Certifications › NVIDIA NCA Gen AI LLMs › Data Analysis and Visualization
42 multiple-choice questions and 18 flashcards on Data Analysis and Visualization, about 14% of the NVIDIA NCA Gen AI LLMs bank. Every one carries a written rationale.
Data Analysis and Visualization is one of 8 chapters in CoStudy's NVIDIA NCA Gen AI LLMs bank, and it holds 42 of the bank's 310 multiple-choice questions — roughly 14% of the total. That proportion is not arbitrary: chapters follow the certifying body's published exam outline, and the number of questions in each is set by that domain's published weight, so the share of your practice time this chapter takes matches the share of the real exam it accounts for.
Studying by chapter is worth doing once you have a diagnostic score. A single overall percentage tells you whether you are close; it does not tell you which domain is dragging. Working a weak chapter in isolation, and re-testing it in isolation, is the fastest way to move a score that has stalled — and it is why the mock exams in CoStudy report by domain rather than as one number.
10 questions drawn from this chapter, with the full rationale shown — the controlling principle behind the right answer, and why each wrong option tempts and fails.
WordPiece differs from classic BPE MOST notably in that WordPiece:
Answer: C — Selects merges by likelihood gain rather than raw pair frequency
C) Correct — WordPiece picks the merge that most improves corpus likelihood, whereas BPE greedily merges the most frequent pair. A) Both algorithms produce subword units below the word level. B) 30k is a common choice, not a requirement of the algorithm. D) Subword schemes fall back to characters or byte units for unseen input.
HNSW is BEST described as:
Answer: B — A graph-based approximate nearest-neighbor index
A) Not a training method. B) Correct — HNSW (Hierarchical Navigable Small World) builds a navigable multi-layer graph for sub-linear approximate nearest-neighbor search. C/D) Different components of the pipeline.
A retrieval system stores chunk metadata alongside vectors. Which feature-engineering choice MOST improves filtered retrieval quality?
Answer: C — Adding normalized fields such as document date and access tier
C) Correct — clean, typed attributes let the query engine apply pre-filters that cut the candidate set to what is relevant and permitted. A) Duplicating text adds storage without adding filterable structure. B) A hash destroys the semantics needed for filtering or display. D) A single blob defeats structured filtering entirely.
Byte Pair Encoding (BPE) tokenization works by:
Answer: C — Merging the most frequent adjacent symbol pair repeatedly
A) That is a baseline tokenizer, not BPE. B) That is byte- or character-level coding only. C) Correct — BPE greedily merges the most frequent adjacent pair over and over to grow a subword vocabulary. D) Word-level tokenization is brittle to out-of-vocabulary terms.
NeMo Curator is purpose-built to:
Answer: A — Curate and clean large text corpora at scale for LLM training
A) Correct — Curator handles GPU-accelerated download, filtering, deduplication and cleaning of pretraining-scale text. B) Request routing is a serving concern. C) Engine building is TensorRT-LLM's role. D) Experiment tracking is a separate MLOps function.
Which scenario suggests RAG rather than fine-tuning is the better first lever?
Answer: D — Answers must cite a knowledge base that updates daily
D) Volatile, citable facts are what retrieval handles well, since the index can be refreshed without touching weights. A) Consistent output formatting is learned efficiently by SFT. B) Style is a weights-level behavior. C) Persona and tone likewise belong in tuning or the system prompt.
Enlarging the tokenizer vocabulary from 32k to 128k for a fixed model size MOST directly trades:
Answer: C — A larger embedding matrix against shorter tokenized sequences
C) Correct — more tokens means bigger input and output embedding tables but fewer tokens per document, easing context pressure. A) Attention cost depends on sequence length, and per-token KV size is unaffected by vocabulary. B) Vocabulary size is not a numerical-stability lever. D) Depth is an independent architectural choice.
Choosing cosine similarity over dot product for retrieval is most appropriate when:
Answer: A — Embedding magnitudes vary and direction carries meaning
A) Cosine normalizes length away, so only the angle between vectors contributes to the score. B) That is the case for keeping dot product. C) Metric guarantees point to L2 distance instead. D) Integer arithmetic is a quantization concern, unrelated to metric choice.
Agentic RAG differs from naive RAG primarily by:
Answer: D — Letting the LLM plan queries, tools, and retrieval rounds
D) Agentic RAG puts the model in control of planning, tool selection, query reformulation, and repeated retrieval with self-checking before it answers. A) Removing generation defeats the purpose. B) A fixed single-shot template is naive RAG. C) A fixed top-1 fetch is a further simplification.
Cosine similarity is preferred over raw Euclidean distance for text embeddings MAINLY because it:
Answer: A — Compares direction and is insensitive to vector magnitude
A) Correct — semantic content is carried by direction, and magnitude often reflects length or frequency artifacts. B) Both are cheap dot-product-family operations. C) Cosine ranges from -1 to 1 in general. D) Normalizing is the usual way cosine is implemented efficiently.
4 cards from the 18 in this chapter.
HNSW (Hierarchical Navigable Small World)?
Graph-based ANN: build navigable hierarchy of neighbors. Fast, accurate, memory-heavy.
Why do modern LLMs use subword tokens instead of words or characters?
A word vocabulary cannot cover unseen words, misspellings, or code and explodes in size. Character tokens have a tiny vocabulary but make sequences very long and force the model to relearn spelling. Subwords keep the vocabulary bounded, represent any string without out-of-vocabulary failures, and keep sequences short enough for attention.
Token vs Subword vs Word tokenization?
Token: smallest unit (often subword). Subword (BPE, SentencePiece): balance vocab size + coverage. Word: brittle to OOV.
Why RAG instead of fine-tuning?
Dynamic data, citation/auditability, smaller context per query, cheaper to update than re-training.
These are a sample. The full Data Analysis and Visualization chapter runs 60 items with per-chapter progress tracking, on the web and in the iOS app.
Open NVIDIA NCA Gen AI LLMs in CoStudy →