Identify an advantage of using a linked list.(1 point)

Responses

It is easier to traverse and search.
It is easier to traverse and search.

It is easier to access data.
It is easier to access data.

It is easier to manipulate the data.
It is easier to manipulate the data.

It is easier to declare.
It is easier to declare.

1 answer

The correct response is: It is easier to manipulate the data.

Linked lists allow for efficient insertion and deletion of elements, as these operations can be performed without the need to shift other elements, which is often required in arrays.