Information independencerefers to theseparation between data storage and data access. It allows a database’slogical structureto be modifiedwithout affecting existing applications.
Types of Information Independence:
Logical Data Independence→ Ability to change theconceptual schema(e.g., renaming columns, adding new attributes)without modifying applications.
Physical Data Independence→ Ability to change thephysical storage structure(e.g., indexing, partitioning)without affecting queries.
Example of Logical Data Independence:
Anew columnis added to the Customers table, but existing queriesstill work without modification.
Example of Physical Data Independence:
Data is moved to SSD storagefor performance improvement, but queriesrun the same way.
Why Other Options Are Incorrect:
Option A (Incorrect):Changing thedatabase type(e.g., MySQL to PostgreSQL) isnotinformation independence.
Option B (Incorrect):Making changes toqueriesis unrelated to database independence.
Option C (Incorrect):Interchanging databases is related todata portability, notinformation independence.
Thus, the correct answer isD - An ability to change the organization of data, asinformation independenceensuresmodifications do not disrupt database operations.
[Reference:Database Management Systems - Logical vs. Physical Independence., ]
Submit