Vidyalelo
Data Structure · Q11

Linked Lists in Data Structures

Programming · Data Structure · question 11

Q11

How do you insert a new node at the end of a linked list?

A.
Update the head pointer
B.
Update the tail pointer
C.
Traverse to the last node and update its next pointer
Answer
D.
Directly insert at the last index

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board