Question: 36
(Choose 1 answer)
To insert a node at the k-th position in a linked list, what should you do?
A. Traverse to the (k-1)-th node, update 'next' pointers
B. Set 'head' to the new node
C. Set the new node's next' to 'head'
D. No need to traverse the list