Question:

Which among the following is a multilevel indexing technique?

Show Hint

B-Tree and B+ Tree are classical multilevel indexing structures used in DBMS.
Updated On: Jun 25, 2026
  • B+ tree
  • Linear probing
  • Linear hashing
  • Extendible hashing
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

Concept: Multilevel indexing reduces the number of disk accesses required to locate records in large databases. The most common multilevel indexing structure is the B+ Tree.

Step 1:
Understand B+ Trees.
A B+ Tree stores index entries in multiple levels. The root points to internal nodes. Internal nodes point to lower-level nodes. Leaf nodes contain search keys and record pointers.

Step 2:
Advantages of B+ Trees.

• Balanced structure
• Efficient search
• Efficient insertion and deletion
• Reduced disk I/O

Step 3:
Analyze other options.
Linear probing, linear hashing and extendible hashing are hashing techniques rather than multilevel indexing techniques.

Step 4:
Select the answer.
\[ \boxed{\text{B+ Tree}} \] is the multilevel indexing technique.
Was this answer helpful?
0
0