Identify the correct concept described as: a data structure where elements are stored in nodes, each pointing to the next node in sequence.
- A. Binary search tree
- B. Stack
- C. Linked list ✓
- D. Graph
Correct answer
C. Linked list
Explanation
Linked list refers to a data structure where elements are stored in nodes, each pointing to the next node in sequence.