Question:

A B+ tree is preferred over a B-tree for databases because _______ .

Show Hint

B+ trees are ideal for database indexing and range queries because of their efficient leaf node linkage and data retrieval method.
Updated On: Jun 16, 2025
  • It supports range queries efficiently
  • It has a smaller node size
  • It allows faster insertion/deletion
  • It uses less disk space
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

The B+ tree is an enhancement of the B-tree that stores data only in the leaf nodes and uses linked leaves for efficient range queries. This allows for faster sequential access to data compared to the B-tree, which stores keys in both internal and leaf nodes.
Was this answer helpful?
0
0