MCQ Collection
Data Visualization MCQs
Practice Data Visualization questions with answers and explanations.
Choose an option to check your answer.
A.
The most frequently occurring value or category
B.
The middle ordered value
C.
The average squared deviation
D.
The distance between quartiles
Show Answer
Correct Answer: A. The most frequently occurring value or category
Explanation:
The mode is the value with the highest observed frequency.
It can be used for either categorical or numeric data.
Choose an option to check your answer.
A.
Data normalization
B.
Graphical integrity
C.
Random sampling
D.
Feature scaling
Show Answer
Correct Answer: B. Graphical integrity
Explanation:
Graphical integrity requires visual proportions to represent numerical proportions honestly.
A misleading axis can make minor differences appear much larger than they are.
Choose an option to check your answer.
A.
They eliminate the need for data cleaning
B.
They enable consistent comparison across subsets using repeated scales
C.
They combine all variables into one number
D.
They guarantee equal variances
Show Answer
Correct Answer: B. They enable consistent comparison across subsets using repeated scales
Explanation:
Small multiples repeat the same chart design for different groups or periods.
A consistent layout makes patterns and differences easier to compare.
Choose an option to check your answer.
A.
df[age <- 30]
B.
df[df$age > 30, ]
C.
df$age[30, ]
D.
df(30 > age)
Show Answer
Correct Answer: B. df[df$age > 30, ]
Explanation:
The logical condition identifies qualifying rows, and the blank column position keeps all columns.
The dollar sign accesses the age variable within df.
Choose an option to check your answer.
A.
Mean, variance, skewness, kurtosis, and range
B.
Minimum, first quartile, median, third quartile, and maximum
C.
Minimum, mean, mode, variance, and maximum
D.
First percentile, mean, median, mode, and ninety-ninth percentile
Show Answer
Correct Answer: B. Minimum, first quartile, median, third quartile, and maximum
Explanation:
The five-number summary describes the ordered spread and center of a distribution.
It is also the numerical basis of a standard box plot.
Choose an option to check your answer.
A.
The sample size becomes smaller
B.
The variables become categorical
C.
The visual clutter reduces the data-to-ink efficiency
D.
The data loses precision in storage
Show Answer
Correct Answer: C. The visual clutter reduces the data-to-ink efficiency
Explanation:
Nonessential visual elements compete with the data for attention.
Removing clutter improves focus and makes comparisons easier.
Choose an option to check your answer.
A.
Randomness
B.
Statistical power
C.
Legibility
D.
Sampling independence
Show Answer
Correct Answer: C. Legibility
Explanation:
Legibility concerns whether text and marks can be perceived without confusion.
Overlapping labels can make an otherwise correct chart unusable.
Choose an option to check your answer.
A.
Converting all data to graphics
B.
Saving a vector as an image
C.
Applying an operation to an entire vector without an explicit element-by-element loop
D.
Sorting only character values
Show Answer
Correct Answer: C. Applying an operation to an entire vector without an explicit element-by-element loop
Explanation:
Many R operations automatically work across every element of a vector.
Vectorized code is usually clearer and often faster than manual looping.
Choose an option to check your answer.
A.
Maximum minus minimum
B.
Mean minus median
C.
Q3 minus Q1
D.
Q1 plus Q3
Show Answer
Correct Answer: C. Q3 minus Q1
Explanation:
The interquartile range spans the middle 50 percent of observations.
Because it ignores the tails, it is relatively resistant to outliers.
Choose an option to check your answer.
A.
Does one variable cause another?
B.
Which cluster label is correct?
C.
What is the optimal database index?
D.
How is one variable distributed?
Show Answer
Correct Answer: D. How is one variable distributed?
Explanation:
Univariate analysis focuses on the behavior of a single variable.
Typical concerns include its center, spread, shape, and unusual values.
Choose an option to check your answer.
A.
It is only used after all analysis is complete
B.
It replaces statistical reasoning
C.
It is required only for image data
D.
It supports both discovery during analysis and communication of findings
Show Answer
Correct Answer: D. It supports both discovery during analysis and communication of findings
Explanation:
Visualizations help analysts inspect data and detect patterns during exploration.
They also present conclusions to stakeholders in an understandable form.
Choose an option to check your answer.
A.
Five random numbers
B.
A vector containing only 1 and 5
C.
A five-level factor
D.
The integer sequence 1, 2, 3, 4, 5
Show Answer
Correct Answer: D. The integer sequence 1, 2, 3, 4, 5
Explanation:
The colon operator creates a regular sequence with a step of one.
It is commonly used for indexing and simple iteration.