Multiple choice

Pick up non dynamic data structure from the following.

  1. List

  2. Stack

  3. Tree

  4. None of these

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

Lists, stacks, and trees can all grow or shrink during runtime, making them dynamic data structures. Arrays are the primary example of static (non-dynamic) data structures with fixed sizes. Since lists, stacks, and trees are all dynamic, the correct answer is D - none of these are non-dynamic.