Exam 17: Linked Lists

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

If new data needs to be added to a linked list, the program simply ________________ and inserts it into the series.

(Multiple Choice)
4.9/5
(33)

A doubly-linked list keeps track of the next node in the list, as well as:

(Multiple Choice)
4.9/5
(39)

Deleting an entire list requires traversing the list, deleting each node one by one.

(True/False)
4.9/5
(26)

In a circular-linked list, the last node points to the:

(Multiple Choice)
4.8/5
(43)

Deleting a node is a ______________ step process.

(Multiple Choice)
4.9/5
(38)

If the head pointer points to NULL, this indicates

(Multiple Choice)
4.8/5
(29)

To insert a new node in ascending order into a list, the list must be:

(Multiple Choice)
4.8/5
(36)

A linked list can consist of structs, objects, or other abstract data types.

(True/False)
4.8/5
(31)

The Standard Template Library (STL) provides a linked list container.

(True/False)
4.7/5
(40)

A new node must always be made the last node in the list.

(True/False)
4.9/5
(40)

Which of the following is a basic linked list operation?

(Multiple Choice)
4.9/5
(35)

The advantage a linked list has over a vector is:

(Multiple Choice)
4.7/5
(35)

Moving through a linked list is referred to as ___________ the list.

(Multiple Choice)
4.9/5
(40)

The list container provided by the Standard Template Library is a template version of a _________________.

(Multiple Choice)
4.7/5
(36)

While traversing a list, a node pointer knows when it has reached the end of a list when:

(Multiple Choice)
4.8/5
(37)

When working with a linked list, one of the basic operations you can perform is to destroy the list.

(True/False)
4.7/5
(40)

When you create a linked list, you must know in advance how many nodes the list will contain.

(True/False)
4.8/5
(33)

A __________ list contains pointers to the nodes before it and after it.

(Multiple Choice)
4.8/5
(36)

A __________ is used to travel through a linked list and search for data.

(Multiple Choice)
4.8/5
(37)

The last node in a linked list points to ______.

(Multiple Choice)
4.9/5
(43)
Showing 21 - 40 of 40
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)