Which database anomaly describes the necessity to update the exact same data value in multiple independent rows, creating a risk of data inconsistency? MCQ with Answer and Explanation

Which database anomaly describes the necessity to update the exact same data value in multiple independent rows, creating a risk of data inconsistency?
A. Selection Anomaly
B. Insertion Anomaly
C. Structural Anomaly
D. Update Anomaly
Answer: Option D
Solution (By JKExamLibrary)
An Update Anomaly occurs when data is redundantly duplicated across rows, requiring changes to be made to every copy, risking inconsistencies if any row is missed.

This question belongs to: Computer Database Management System (DBMS)

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Database Management System (DBMS) Questions

Question #1 Report Error
Any set of one or more attributes that collectively allow us to uniquely identify tuples in a relation is termed as a what?
A. Secondary Key
B. Local Key
C. Foreign Key
D. Super Key

Correct Answer: Option D


Explanation:
A Super Key is any set of attributes within a table that can uniquely identify a row. A candidate key is a minimal super key.

This question belongs to: Computer Database Management System (DBMS)
Question #2 Report Error
In SQL, which statement is used to change a user's password?
A. UPDATE USER
B. MODIFY USER
C. CHANGE USER
D. ALTER USER

Correct Answer: Option D


Explanation:
ALTER USER is used in many DBMS to change user attributes, including password. The exact syntax varies by DBMS.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
The total number of tuples (rows) contained within a relational database table is called its what?
A. Cardinality
B. Dimension
C. Density
D. Degree

Correct Answer: Option A


Explanation:
The number of tuples or rows in a relation is defined as the cardinality of that relation.

This question belongs to: Computer Database Management System (DBMS)