The advantage of using linked lists over arrays is that ________

The advantage of using linked lists over arrays is that ________ Correct Answer Insertion and deletion of an element can be done at any position in a linked list

Insertion and deletion in a linked list can be done at any position. On the other hand, in an array, to insert an element at a specific position, the rest of the elements have to be moved one position to the left and to delete an element, all the elements after the deleted element have to be moved one position to the right.
Bissoy MCQ

Related Questions

The advantage of using linked lists over arrays is that . . . . . . . .
Which of the following is/are advantage(s) of Sequence Container arrays over C-like arrays?
What is the advantage of using a doubly linked list for chaining over singly linked list?
What is the advantage of using linked list over the doubly linked list for chaining?