How many ways a linear linked list can be traversed?
A
Correct answer
Explanation
A linear linked list can be traversed in exactly two ways: forward from the head node to the tail node using the next pointers, and backward by first reversing the list then traversing. While doubly linked lists allow bidirectional traversal without reversal, linear lists require this extra step for reverse traversal.