Final answer:
A linked list is a series of linked nodes chained together in sequence. The nodes are connected through the links or pointers, which allow traversal of the list.
Step-by-step explanation:
A linked list is a series of linked nodes chained together in sequence. Each node contains a value and a reference to the next node. The nodes in a linked list are not necessarily contiguous in memory, so they can be disjointed. The nodes are connected through the links or pointers, which allow traversal of the list.