Q. In the context of database design, what does 'denormalization' refer to?
-
A.
The process of reducing redundancy
-
B.
The process of increasing redundancy for performance
-
C.
The process of normalizing data
-
D.
The process of creating indexes
Solution
Denormalization refers to the process of increasing redundancy in a database to improve performance, often at the cost of data integrity.
Correct Answer:
B
— The process of increasing redundancy for performance
Learn More →
Q. In the context of DBMS architecture, what does the term 'data independence' mean?
-
A.
Data can be accessed without a database
-
B.
Changes to the data structure do not affect application programs
-
C.
Data is stored in a single location
-
D.
Data can be easily replicated
Solution
Data independence means that changes to the data structure do not require changes to application programs that access the data.
Correct Answer:
B
— Changes to the data structure do not affect application programs
Learn More →
Q. In the context of DBMS architecture, what does the term 'physical data independence' mean?
-
A.
Changes to the physical storage do not affect the logical schema
-
B.
Changes to the logical schema do not affect the physical storage
-
C.
Data can be accessed without knowing its physical location
-
D.
Data can be stored in multiple formats
Solution
Physical data independence means that changes to the physical storage of data do not affect the logical schema of the database.
Correct Answer:
A
— Changes to the physical storage do not affect the logical schema
Learn More →
Q. What is the main advantage of using a clustered index?
-
A.
It allows for faster updates
-
B.
It stores data in a sorted order
-
C.
It reduces the need for normalization
-
D.
It can be created on any column
Solution
A clustered index stores data in a sorted order based on the indexed column, which can significantly improve the performance of data retrieval.
Correct Answer:
B
— It stores data in a sorted order
Learn More →
Q. Which normal form requires that a relation is in Second Normal Form and has no transitive dependencies?
-
A.
First Normal Form
-
B.
Second Normal Form
-
C.
Third Normal Form
-
D.
Boyce-Codd Normal Form
Solution
Third Normal Form (3NF) requires that a relation is in Second Normal Form and has no transitive dependencies.
Correct Answer:
C
— Third Normal Form
Learn More →
Q. Which of the following is a characteristic of a star schema in database design?
-
A.
Highly normalized structure
-
B.
Central fact table with dimension tables
-
C.
Complex relationships between tables
-
D.
Use of many-to-many relationships
Solution
A star schema features a central fact table surrounded by dimension tables, providing a simple and efficient structure for data analysis.
Correct Answer:
B
— Central fact table with dimension tables
Learn More →
Q. Which of the following is NOT a property of transactions in a database?
-
A.
Atomicity
-
B.
Consistency
-
C.
Isolation
-
D.
Redundancy
Solution
Redundancy is not a property of transactions; the properties are known as ACID: Atomicity, Consistency, Isolation, and Durability.
Correct Answer:
D
— Redundancy
Learn More →
Showing 1 to 7 of 7 (1 Pages)