Difficulty: Easy
Correct Answer: Three rows have the values Brown, NULL, and Blue in the same column.
Explanation:
Introduction:
Missing values undermine analytics and operations by obscuring required attributes. Recognizing the pattern in raw data is the first step toward remediation. This question asks you to pick the example that clearly demonstrates missing data in a column where a value is expected.
Given Data / Assumptions:
Concept / Approach:
Scan for placeholders of absence such as NULL or empty strings in contexts where a value should exist. The presence of a NULL amidst legitimate values in the same column is a textbook illustration of the missing values problem.
Step-by-Step Solution:
1) Inspect (a): multiple values across columns → multivalue, multicolumn.2) Inspect (b): token order inconsistency → inconsistent values.3) Inspect (c): the middle row has NULL where a color is expected → missing values.4) Inspect (d): free text → general-purpose remarks issue.5) Therefore, choose (c).
Verification / Alternative check:
COUNT(*) vs COUNT(column) or filtering WHERE column IS NULL quantifies the extent of missing data across the table.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing empty string ' with NULL. Establish clear rules and constraints to avoid silent missing values.
Final Answer:
Three rows have the values Brown, NULL, and Blue in the same column.
Discussion & Comments