Question
Which statement about Linked Lists is the strongest interview answer?
- Linked Lists is mostly a naming style choice and has little effect on runtime behavior or design tradeoffs.
- Linked Lists exists mainly to reduce the number of files in a Python project.
- Linked Lists matters only for frontend scripting and not for backend or automation code.
- A linked list stores nodes connected by references rather than in contiguous indexed positions.
Hint
Start with the core rule behind Linked Lists.
Answer and rationale
Correct answer: D. A linked list stores nodes connected by references rather than in contiguous indexed positions.
A linked list stores nodes connected by references rather than in contiguous indexed positions. This is the base concept interviewers commonly test first.
Track: Python