Data Quality Patterns — Identifying the Missing Values Problem Each option shows example data from a table. Which option illustrates the missing values problem (i.e., required data absent for some rows)?

Database Database Design Using Normalization Difficulty: Easy
Choose an option
  • A
    Three columns have the values 534-2435, 534-7867, and 546-2356 in the same row.
  • B
    Three rows have the values Brown Small Chair, Small Chair Brown, and Small Brown Chair in the same column.
  • C
    Three rows have the values Brown, NULL, and Blue in the same column.
  • D
    One row has the value 'He is interested in a Silver Porsche from the years 1978-1988' in a column.
  • E
    A column stores mixed encodings like US, USA, United States for the same country.

Answer

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:

  • NULL stands for the absence of a value.
  • Required columns should hold meaningful entries for all rows.
  • We are diagnosing from small examples.

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:

  • (a): Multiple attributes across columns, not missing data.
  • (b): Token order differences, not absence.
  • (d): Long remarks; different issue entirely.
  • (e): Inconsistent values, not missing ones.

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
No comments yet. Be the first to comment!
Join Discussion