Which of the following is a true statement about indexes? MCQ with Answer and Explanation

Which of the following is a true statement about indexes?
A. Indexes always improve performance
B. Indexes improve the speed of SELECT queries but can slow down INSERT, UPDATE, and DELETE operations
C. Indexes are only used for primary keys
D. Indexes cannot be created on views
Answer: Option B
Solution (By JKExamLibrary)
Indexes speed up data retrieval but require additional maintenance during data modifications, which can slow down DML operations.

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

Discuss this Question (0)

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

Practice More Database Management System (DBMS) Questions

Question #1 Report Error
Which normal form is stricter than 3NF and is often described as a configuration where every determinant must be a candidate key?
A. 5NF
B. 4NF
C. Boyce-Codd Normal Form (BCNF)
D. 2NF

Correct Answer: Option C


Explanation:
Boyce-Codd Normal Form (BCNF) is a stronger version of 3NF. A relation is in BCNF if, for every non-trivial functional dependency X -> Y, X is a candidate key.

This question belongs to: Computer Database Management System (DBMS)
Question #2 Report Error
What is the purpose of a database index?
A. To enforce uniqueness
B. To speed up data retrieval operations
C. To define relationships
D. To store large objects

Correct Answer: Option B


Explanation:
Indexes are primarily used to improve the speed of data retrieval, particularly for search queries.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
Which of the following is an example of a DBMS?
A. Google Docs
B. MySQL
C. Microsoft Excel
D. Windows 10

Correct Answer: Option B


Explanation:
MySQL is a popular relational database management system (RDBMS). Excel is a spreadsheet, not a DBMS.

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