Question:medium

What is the primary difference between a B-tree and a B+ tree?

Show Hint

Most modern relational databases (like MySQL and PostgreSQL) use B+ trees specifically because of the linked leaf nodes and the efficiency of range-based searches.
Updated On: Jul 4, 2026
  • B-trees have a higher fill factor.
  • B+ trees store data pointers only in the leaf nodes.
  • B-trees do not allow duplicate keys.
  • B+ trees cannot be used for primary indexing.
Show Solution

The Correct Option is B

Solution and Explanation

Was this answer helpful?
0