Vidyalelo
Data Structure · Q202

Introduction to Data Structures

Programming · Data Structure · question 202

Q202

What differentiates a circular linked list from a normal linked list?

A.
You cannot have the 'next' pointer point to null in a circular linked list
Answer
B.
It is faster to traverse the circular linked list
C.
In a circular linked list, each node points to the previous node instead of the next node
D.
Head node is known in circular linked list

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board