In a doubly linked list, each node contains :
2025
In a doubly linked list, each node contains :
Answer: C. Data, a pointer to the next node, and a pointer to the previous node — In a doubly linked list, each node contains data and two pointers: one pointing to the previous node and another pointing to the next node.
- A.
Data and a pointer to the next node only
- B.
Data and a pointer to the previous node only
- C.
Data, a pointer to the next node, and a pointer to the previous node
- D.
Only data
Attempted by 535 students.
Show answer & explanation
Correct answer: C
In a doubly linked list, each node contains data and two pointers: one pointing to the previous node and another pointing to the next node.
Loading lesson…