What type of anomaly occurs when deleting a row inadvertently destroys other independent, valuable historical facts from the database? MCQ with Answer and Explanation

What type of anomaly occurs when deleting a row inadvertently destroys other independent, valuable historical facts from the database?
A. Projection Anomaly
B. Deletion Anomaly
C. Selection Anomaly
D. Insertion Anomaly
Answer: Option B
Solution (By JKSSB Mock Tests)
A Deletion Anomaly occurs when the deletion of a specific data record unintentionally deletes other distinct, unrelated information that should have been preserved.

Discuss this Question (0)

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

Practice More Database Management System (DBMS) Questions

Question #1
Which clause is used to assign a temporary alias name to a column or table in an SQL statement for better readability?
A. USING
B. WITH
C. LIKE
D. AS

Correct Answer: Option D


Explanation:
The AS keyword is used to assign a temporary alias name to an expression, column, or table within an SQL statement query execution context.

This question belongs to: Computer Database Management System (DBMS)
Question #2
Which of the following is a way to avoid redundancy in a database?
A. Denormalization
B. Normalization
C. Replication
D. Indexing

Correct Answer: Option B


Explanation:
Normalization reduces redundancy by organizing data into tables with minimal duplication.

This question belongs to: Computer Database Management System (DBMS)
Question #3
Which of the following commands is used to modify the structure of an existing table, such as adding or deleting a column?
A. MODIFY
B. CHANGE
C. ALTER
D. UPDATE

Correct Answer: Option C


Explanation:
The ALTER command is part of DDL and is used to modify the schema or structural definition of an existing database object like a table.

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