160k views
1 vote
A linked list is a series of _____ nodes chained together in sequence.

A) Connected
B) Disjointed
C) Linked
D) Independent

User Bluegene
by
8.0k points

1 Answer

3 votes

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.

User John Kline Kurtz
by
7.4k points