Multiple Choice
The advantage a linked list has over a vector is that
A) a linked list can dynamically shrink or grow and a vector cannot
B) a linked list is smaller than a vector
C) a node can be inserted or removed faster from a linked list than from a vector
D) data removal and insertion are more accurate with a linked list than with a vector
E) None of these
Correct Answer:

Verified
Correct Answer:
Verified
Q6: A list that contains pointers to the
Q7: Deleting an entire list simply requires the
Q8: Nodes in a linked list are stored
Q9: The list container provided by the Standard
Q10: If new data needs to be added
Q12: If there are no nodes in a
Q13: To create a linked list you must
Q14: A linked list class must take care
Q15: To delete an entire list, normally you
Q16: Select all that apply. Which of the