Data Structures

The following statement describes a specific concept. What is it called? a linked list in which the last node points back to the first node, forming a loop.

Correct answer

B. Circular linked list

Explanation

Circular linked list refers to a linked list in which the last node points back to the first node, forming a loop.