6.1k views
0 votes
In a circular linked list the last node points to the____ node.

a. first

b. last

c. middle

d. new

User Landis
by
4.9k points

1 Answer

3 votes

Answer: option A) First

In a circular linked list the last node points to the first node.

Explanation: As in a circular linked list, the node will point to its next node. Since the node next to last node is the first node hence last node will point to first node in a circular way. The elements points to each other in a circular path which forms a circular chain.

User Monibius
by
5.3k points