The intentional process of introducing redundant data into a normalized database structure to optimize read query performance is called what? MCQ with Answer and Explanation

The intentional process of introducing redundant data into a normalized database structure to optimize read query performance is called what?
A. Normalization
B. Fragmentation
C. Decomposition
D. Denormalization
Answer: Option D
Solution (By JKSSB Mock Tests)
Denormalization is a strategy applied to normalized databases where redundant data is selectively added to speed up complex read queries by minimizing costly table joins.

Discuss this Question (0)

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

Practice More Database Management System (DBMS) Questions

Question #1
What is a tuple in a relational database?
A. A single row in a table
B. A relationship between tables
C. A single column in a table
D. The name of the table

Correct Answer: Option A


Explanation:
In RDBMS, a tuple represents a single row or record in a relation (table).

This question belongs to: Computer Database Management System (DBMS)
Question #2
Which of the following is NOT an aggregate function in standard SQL?
A. SUM()
B. AVG()
C. COUNT()
D. LENGTH()

Correct Answer: Option D


Explanation:
SUM(), AVG(), and COUNT() are aggregate functions operating on multiple rows, whereas LENGTH() is a scalar function acting on a single text value.

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

Correct Answer: Option C


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

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