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
Top TS PGECET Computer Science & Information Technology Questions