Which is the best Data structure?
-
Array
-
Linked List
-
Circular Queue
-
Depends on application
D
Correct answer
Explanation
There is no single 'best' data structure. The choice depends entirely on the specific application requirements, such as the need for fast searching (Trees/Hash Tables), fast insertion (Linked Lists), or memory efficiency (Arrays).