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
AnswerD.
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