- A A list where each node has only one pointer to the next node
- B A list where each node has two pointers, one to the next node and one to the previous node
- C A list where the last node points to the first node
- D A list where the first node points to the last node
Linked Lists