Multiple choice

A type of Linked list where the pointer in the last node points back to the first node is called a

  1. singly linked list

  2. circular singly linked list

  3. doubly linked list

  4. circular doubly linked list

  5. header linked list

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

Circular singly linked list is a linked list where the pointer in the last node points back to the first node.