Question:

What is normalization in database design?

Show Hint

Normalization reduces redundancy but may increase query complexity; balance with denormalization if needed.
Updated On: Jun 18, 2025
  • Process of organizing data to eliminate redundancy
  • Process of indexing tables for faster queries
  • Process of encrypting database records
  • Process of backing up database files
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

Normalization is the process of structuring a relational database to:
- Eliminate data redundancy.
- Ensure data integrity.
- Organize data into tables following normal forms (e.g., 1NF, 2NF, 3NF).
Option (1) is correct.
Option (2) refers to indexing.
Option (3) refers to security.
Option (4) refers to backup, none of which are normalization.
Was this answer helpful?
0
0