A linked list which always contains a special node is called
-
circular linked list
-
header node
-
doubly linked list
-
linear linked list
B
Correct answer
Explanation
A linked list with a special header (or sentinel) node is called a header node list. This special node typically contains metadata or simplifies insertion/deletion operations by eliminating edge cases when the list is empty or operating at the head position.