You are employed as a developer at ABC.com. You make use of C# and ASP.NET for
development purposes.
You have been instructed to create a new ABC.com application that makes use of a data structure
that satisfies the following requirements:
Prohibits random access to its items.
Are extremely fast in executing insert and delete operations.
Are not stored in contiguous memory locations.
What data structure should you make use of?
A.
An array data structure.
B.
A linked list data structure.
C.
A stack data structure.
D.
A queue data structure.
D.
Correct answer is B. “linked lists are slow at retrieving data. However, for insert and delete operations, linked lists are extremely fast”