PRASHNIKAप्रश्निका
Back to the paper

What is a linked list?

Computer Science20231 markShort answer

Answer

Answer

AI
A linked list is a linear, dynamic data structure made up of a sequence of nodes, where each node holds a data item and a reference (pointer/link) to the next node in the sequence. Unlike an array, its elements need not occupy contiguous memory locations, and the list can grow or shrink at run time.
Data structures

From ISC 2023 Specimen Computer Science Paper 1, question 1(x).