132k views
4 votes
In a doubly linked list, every nodecontains the address of the next node and the previousnode except for the ____ node.

a. middle

b. last

c. first

d. second to last

1 Answer

2 votes

Answer:The answer is (c).first.

Step-by-step explanation:

In doubly linked list each node possesses the address of next node(except last node) because there is no node present after the last node .

and the address of previous node(except first node) because there is no node present before the first node.

So the conclusion is that the first node does not contain the address of previous node and the last node does not contain the address of the next node.

User Ikoverdyaev
by
8.8k points