Exam 18: Linked Lists

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

A linked list is a series of connected

(Multiple Choice)
4.9/5
(38)

Select all that apply. A __________ list contains pointers to the nodes before it and after it.

(Multiple Choice)
4.8/5
(28)

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

(True/False)
4.9/5
(36)

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

(True/False)
4.7/5
(31)

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

(Multiple Choice)
4.8/5
(36)

A linked list can grow and shrink as a program runs.

(True/False)
4.9/5
(33)

The process of moving through a linked list is referred to as __________ the list.

(Multiple Choice)
4.7/5
(34)

Select all that apply. While traversing a list, a node pointer knows when it has reached the end of the list if

(Multiple Choice)
4.8/5
(28)

Select all that apply. Which of the following containers can add elements at their back without requiring traversal?

(Multiple Choice)
4.9/5
(27)

To build a list initally, you can use a(n) __________ routine.

(Multiple Choice)
4.8/5
(43)

In an insertion or deletion routine: How many pointers are you required to create for use during the traversal process?

(Multiple Choice)
4.8/5
(33)

If the head pointer points to nullptr, this indicates

(Multiple Choice)
4.9/5
(30)

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

(Multiple Choice)
4.9/5
(40)

The __________ of a linked list points to the first node in the list.

(Multiple Choice)
4.9/5
(26)

ADT stands for

(Multiple Choice)
4.9/5
(33)

A linked list is called "linked" because each node in the series has a pointer that points to the next node in the list.

(True/False)
5.0/5
(23)

When you delete a node from a list, you must ensure that the links in the list are not permanently broken.

(True/False)
4.8/5
(33)

A new node cannot become the first node in the list.

(True/False)
4.8/5
(30)

Linked lists are less complex to code and manage than arrays.

(True/False)
4.9/5
(35)

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

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

Filters

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