Multiple choice technology databases

DB2 Index Storate Format Indexes is Stored in

  1. B - Tree format

  2. Hash Table

  3. AVL Tree

  4. Red Black Tree

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

DB2 stores indexes using B-tree structures, which provide efficient search, insert, and delete operations. B-trees are the industry standard for database indexes because they maintain sorted data and allow logarithmic time complexity. Hash tables, AVL trees, and Red-Black trees are not used for DB2 indexes.