Question:

In a ______ linked list, the last node's link field points to the first node of the list.

Show Hint

Circular list forms a loop, no NULL pointer at the end.
Updated On: Jun 5, 2026
  • Circular
  • Linear
  • Sequential
  • Indexed
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

Concept: A linked list is a collection of nodes where each node contains data and a pointer.

Step 1:
Understand types.
• Linear list → last node points to NULL
• Circular list → last node points to first node ✔

Step 2:
Evaluate condition. Given:
• Last node connects to first node This matches circular linked list.

Step 3:
Conclusion. \[ \boxed{(1)\ \text{Circular linked list}} \]
Was this answer helpful?
0
0

Top CUET PG Time Complexity Questions