MCQ Collection
Data Visualization MCQs
Practice Data Visualization questions with answers and explanations.
Choose an option to check your answer.
A.
To merge all groups into one average
B.
To eliminate legends from every chart
C.
To convert numeric values to text
D.
To create separate but consistently designed plots for subsets of the data
Show Answer
Correct Answer: D. To create separate but consistently designed plots for subsets of the data
Explanation:
Facets reduce overlap and allow subgroup patterns to be compared.
Shared scales and consistent encodings make the comparison meaningful.
Choose an option to check your answer.
A.
A category bar chart
B.
A pie chart
C.
A frequency table of names
D.
A normal Q-Q plot
Show Answer
Correct Answer: D. A normal Q-Q plot
Explanation:
Heavy tails create systematic departures at the ends of a normal Q-Q plot.
The center may align while extreme quantiles bend away from the reference line.
Choose an option to check your answer.
A.
A continuous area curve only
B.
A survival curve without axes
C.
A geographic map
D.
Separated bars or vertical spikes at discrete outcomes
Show Answer
Correct Answer: D. Separated bars or vertical spikes at discrete outcomes
Explanation:
A PMF is defined at distinct values rather than across continuous intervals.
Separated bars or spikes emphasize its discrete support.
Choose an option to check your answer.
A.
Every selected item is permanently removed
B.
Only missing items can be sampled
C.
The sample must equal the population size
D.
A selected item can be chosen again in the same sample
Show Answer
Correct Answer: D. A selected item can be chosen again in the same sample
Explanation:
After each draw, the item is returned to the sampling pool.
Draws therefore remain possible for all items at every step.
Choose an option to check your answer.
A.
Q3 + 1.5 × IQR
B.
Mean + IQR
C.
Maximum + standard deviation
D.
Q1 + 1.5 × median
Show Answer
Correct Answer: A. Q3 + 1.5 × IQR
Explanation:
The upper fence is Q3 plus 1.5 times the interquartile range.
Points beyond it are flagged for investigation, not automatically deleted.
Choose an option to check your answer.
A.
A sorted bar chart of proportions
B.
A three-dimensional pie chart
C.
A scatter plot
D.
A box plot
Show Answer
Correct Answer: A. A sorted bar chart of proportions
Explanation:
Aligned bar lengths are easier to compare accurately than angles or three-dimensional slices.
Sorting also helps viewers identify the largest and smallest shares.
Choose an option to check your answer.
A.
When positive values span several orders of magnitude
B.
When the data contain only names
C.
When all values are identical
D.
When zero must appear at equal visual intervals
Show Answer
Correct Answer: A. When positive values span several orders of magnitude
Explanation:
A logarithmic scale compresses large values and expands smaller positive values.
It can reveal multiplicative relationships and relative changes.
Choose an option to check your answer.
A.
The data may contain distinct subgroups or a recording discontinuity
B.
The mean is necessarily zero
C.
The sample must be normally distributed
D.
The graph cannot represent numeric data
Show Answer
Correct Answer: A. The data may contain distinct subgroups or a recording discontinuity
Explanation:
Gaps can reflect real subpopulations, thresholds, censoring, or data errors.
Further investigation should connect the visual pattern to data context.
Choose an option to check your answer.
A.
1/6
B.
1/4
C.
4/6
Show Answer
Correct Answer: A. 1/6
Explanation:
Each of the six faces is equally likely for a fair die.
Therefore, the probability mass at any one face is one sixth.
Choose an option to check your answer.
A.
rnorm(100)
B.
runif(0, 100)
C.
pnorm(100)
D.
qnorm(100)
Show Answer
Correct Answer: A. rnorm(100)
Explanation:
rnorm() generates normal random variates, and the first argument is the number requested.
Default mean and standard deviation are 0 and 1.
Choose an option to check your answer.
A.
They show the exact value of every observation
B.
They allow distributions of several groups to be compared compactly
C.
They prove group means are significantly different
D.
They display time order automatically
Show Answer
Correct Answer: B. They allow distributions of several groups to be compared compactly
Explanation:
Aligned box plots reveal differences in medians, spreads, and potential outliers.
They are efficient when many groups must be compared.
Choose an option to check your answer.
A.
When categories have no natural order
B.
When observations are ordered, especially across time
C.
When displaying one static nominal count
D.
When showing a single median only
Show Answer
Correct Answer: B. When observations are ordered, especially across time
Explanation:
Lines emphasize continuity and changes along an ordered axis.
Time series are the most common application.