Multiple Choice
Linked lists of items are commonly implemented by
A) using an array to hold list items.
B) using a function to compute the link to the next item.
C) using a class template to represent list items.
D) using a structure containing an item and a pointer to the structure type.
E) None of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q6: A list that contains pointers to the
Q8: Nodes in a linked list are stored
Q23: Which of the following are linked list
Q24: When an item stored in a linked
Q27: A non-empty linked list of items can
Q29: Inserting an item into a linked list
Q30: The list container provided by the Standard
Q31: The STL implementation of a linked list
Q32: Deleting an entire list requires traversing the
Q33: The Standard Template Library (STL) provides a