Multiple choice

Which of the following types of linked list is the one where the null pointer in the last node is replaced with the address of the first node?

  1. Doubly linked list

  2. Two way list

  3. Circular linked list

  4. Stack

  5. Queue

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

This type of linked list is the one where the null pointer in the last node is replaced with the address of the first node.