Question:medium

Which of the following statements about linked lists is true?

Show Hint

While Linked Lists have slower access times ($O(n)$) compared to Arrays ($O(1)$), they are much more efficient at insertions and deletions ($O(1)$ if you have the pointer) because no shifting of elements is required.
Updated On: Jul 4, 2026
  • Elements of a linked list are stored in contiguous memory locations.
  • Accessing the $n^{th}$ element of a linked list takes $O(1)$ time.
  • In a singly linked list, each node contains a data part and a pointer to the next node.
  • A linked list cannot be dynamically resized.
Show Solution

The Correct Option is C

Solution and Explanation

Was this answer helpful?
0