Question:

Match List-I with List-II.

List-IList-II
A. Breadth First SearchI. Shortest paths
B. Sparse GraphII. Adjacency list representation
C. Collision ResolutionIII. Open addressing
D. Linked listIV. Self referential structures


Choose the correct answer from the options given below:

Show Hint

BFS → shortest path, Sparse → adjacency list, Hashing → open addressing, Linked list → self-referential.
Updated On: Jun 5, 2026
  • A-I, B-II, C-III, D-IV
  • A-I, B-III, C-IV, D-II
  • A-II, B-I, C-III, D-IV
  • A-IV, B-II, C-I, D-III
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

Concept: Each structure or algorithm has a characteristic application or property.

Step 1:
Match A (Breadth First Search).
• BFS is used to find shortest path in unweighted graphs \[ A \rightarrow I \]

Step 2:
Match B (Sparse Graph).
• Sparse graph has fewer edges
• Efficient representation → adjacency list \[ B \rightarrow II \]

Step 3:
Match C (Collision Resolution).
• Used in hashing
• Open addressing is a technique to resolve collisions \[ C \rightarrow III \]

Step 4:
Match D (Linked List).
• Nodes contain reference to next node
• Hence self-referential structure \[ D \rightarrow IV \]

Step 5:
Final mapping. \[ A-I,\ B-II,\ C-III,\ D-IV \] \[ \boxed{(1)} \]
Was this answer helpful?
0
0