Multiple choice

Following data structure can filter from overflow problem

  1. Stack Implemented using array

  2. Linked list

  3. Circularly linked list

  4. None of these

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A linked list is a dynamic data structure that allocates memory as needed, unlike static arrays, allowing it to grow and avoid the fixed-size overflow problems inherent in traditional array-based implementations.