Site Links
Question #1
Inserting a node in a linked list requires that pointers be redirected to include the new node.
Question #2
The position of the node to be deleted dictates the method used to perform the deletion.
Question #3
When you save a linked list to a file, you save the data to a file along with the pointers.
Question #4
A node can be deleted from the middle of the linked list.
Question #5
When data from a disk file is reloaded into a linked list, each node must be created and added
to the list individually.