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 delete data.
It is difficult to delete data.

It is difficult to manipulate data.
It is difficult to manipulate data.

It is difficult to traverse.

1 answer

The correct response is: It is difficult to traverse.

While linked lists have advantages like dynamic size and ease of insertion/deletion, they can be harder to traverse compared to arrays, which allow direct access to elements via indexing. In a linked list, you must start from the head and follow pointers to reach the desired node, making traversal less efficient.