উত্তর
ব্যাখ্যা
Linked list:
A linked list stores elements in nodes scattered across memory connected by pointers.
Contiguous memory locations:(Answer)
A 1D array is stored in a single continuous block of memory where each element is placed right after the previous one. This allows direct indexing with base_address + index * size_of_element.
Non-contiguous blocks:
If memory blocks are scattered, you’d need pointers to connect them — which is again a linked structure, not an array.
Binary tree:
A binary tree is a hierarchical structure, not a linear storage format like arrays.