Which of the following is a disadvantage of using a linked list?(1 point)

Responses

It is difficult to declare.
It is difficult to declare.

It is difficult to traverse.
It is difficult to traverse.

It is difficult to delete data.
It is difficult to delete data.

It is difficult to manipulate data.

1 answer

The best disadvantage listed for using a linked list is:

It is difficult to traverse.

While linked lists do have advantages, such as dynamic size and efficient insertions and deletions, traversing a linked list can be less straightforward than traversing an array because you must follow pointers from one node to the next rather than accessing elements by index. This can lead to slower access times in certain scenarios.