How can a node be inserted in the middle of a linked list?
Skill/Topic: Linked List A) by repointing the previous and the next elements of existing nodes to the new node B) by repointing only the next elements of existing node to the new node C) by repointing only the Previous elements of existing node to the new node D) None of the above Explanation: by repointing the previous and the next elements of existing nodes to the new node You can insert a node in the middle of a linked list by repointing the previous and the next elements of existing nodes to the new node.