engineering computer science MCQ #1221

What is the advantage of using a linked list over an array?

engineering computer science MCQ #1221

  1. Question 1

    Q1. What is the advantage of using a linked list over an array?

    • A) Faster access time
    • B) Dynamic size and efficient insertion/deletion
    • C) Less memory usage
    • D) Simpler implementation

    Answer: Dynamic size and efficient insertion/deletion

    Explanation: Linked lists offer dynamic size and efficient insertion/deletion of elements without shifting all elements, unlike arrays.