Difficulty: Easy
Correct Answer: Three rows have the values Brown Small Chair, Small Chair Brown, and Small Brown Chair in the same column.
Explanation:
Introduction / Context:
Data quality issues in databases include inconsistent values, missing values, multivalued attributes, and general-purpose remarks fields. “Inconsistent values” occur when the same logical concept is stored in different formats or sequences, making grouping, searching, and analytics difficult. This question asks you to recognize the pattern that indicates inconsistency within one attribute (column).
Given Data / Assumptions:
Concept / Approach:
When an attribute should contain a single, consistently formatted value (e.g., a product description split into standardized attributes like color, size, item), but entries appear as “Brown Small Chair,” “Small Chair Brown,” and “Small Brown Chair,” the value is not normalized or standardized. This inconsistency undermines equality matching and GROUP BY operations because semantically identical items look different to the database engine.
Step-by-Step Solution:
Verification / Alternative check:
Try to aggregate counts by product description; inconsistent phrasing produces multiple groups for the same item. A standardized attribute model (separate color, size, item columns) avoids this situation.
Why Other Options Are Wrong:
Three columns with multiple numbers: indicates repeating groups or multivalued attributes, not inconsistency.
Values Brown, NULL, Blue: introduces missing values, not inconsistency.
Long sentence about a car: that is a general-purpose remarks column problem.
Common Pitfalls:
Confusing inconsistent values with synonyms; both harm quality, but inconsistent structure/order/format is the key sign here.
Final Answer:
Three rows have the values Brown Small Chair, Small Chair Brown, and Small Brown Chair in the same column.
Discussion & Comments