Multiple choice technology architecture

Which of the following statement is false?

  1. Arrays are dense lists and static data structure

  2. data elements in linked list need not be stored in adjecent space in memory

  3. pointers store the next data element of a list

  4. linked lists are collection of the nodes that contain information part and next pointer

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

Option C is false because pointers store the ADDRESS of the next node, not the data element itself. Options A, B, and D are true: arrays are dense static structures, linked list elements need not be adjacent in memory (linked by pointers), and linked lists are collections of nodes with data and pointer fields.