in DS edited by
860 views
2 votes
2 votes

Which of the following is not collision resolution technique?

  1. Hash addressing
  2. Chaining
  3. Both (A) and (B)
  4. Indexing
in DS edited by
860 views

2 Answers

1 vote
1 vote

Answer : Indexing

Indexing is a data structure technique to efficiently retrieve records from the database files based on some attributes on which the indexing has been done.

0 votes
0 votes

Hash addressing is open addressing, which is a collision resolution technique.

Chaining is also a collision resolution technique which employees linked list.

Indexing is a file organization technique mostly used in Databases (primary and secondary indexing). Indexing uses B-Tree or B+-Tree.

Hence, option D is the correct option.

Related questions