Exam 17: Linked Lists
Exam 1: Introduction to Computers and Programming50 Questions
Exam 2: Introduction to C Plus Plus60 Questions
Exam 3: Expressions and Interactivity44 Questions
Exam 4: Making Decisions53 Questions
Exam 5: Loops and Files63 Questions
Exam 6: Functions49 Questions
Exam 7: Arrays58 Questions
Exam 8: Searching and Sorting Arrays20 Questions
Exam 9: Pointers45 Questions
Exam 10: Characters, C-Strings, and More About the String Class45 Questions
Exam 11: Structured Data53 Questions
Exam 12: Advanced File Operations38 Questions
Exam 13: Introduction to Classes47 Questions
Exam 14: More About Classes40 Questions
Exam 15: Inheritance, Polymorphism, and Virtual Functions40 Questions
Exam 16: Exceptions, Templates, and the Standard Template Library Stl39 Questions
Exam 17: Linked Lists40 Questions
Exam 18: Stacks and Queues47 Questions
Exam 19: Recursion22 Questions
Exam 20: Binary Trees38 Questions
Select questions type
Appending a node means adding it to the end of a list, and ________ a node means putting a new node in the list, but not necessarily at the end.
Free
(Multiple Choice)
4.9/5
(45)
Correct Answer:
D
A ________ list contains pointers to the nodes before it and after it.
Free
(Multiple Choice)
4.9/5
(42)
Correct Answer:
D
A linked list is a series of connected ________.
Free
(Multiple Choice)
4.9/5
(42)
Correct Answer:
D
To create a linked list, you must first create a(n)________.
(Multiple Choice)
4.9/5
(41)
When working with a linked list, one of the basic operations you can perform is to destroy the list.
(True/False)
4.9/5
(35)
If the head pointer points to nullptr, this indicates ________.
(Multiple Choice)
4.8/5
(41)
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)
4.7/5
(41)
The process of moving through a linked list is referred to as ________ the list.
(Multiple Choice)
4.8/5
(38)
A doubly-linked list keeps track of the next node in the list, as well as:
(Multiple Choice)
4.8/5
(37)
Deleting an entire list requires traversing the list, deleting each node one by one.
(True/False)
4.8/5
(41)
To insert a new node in ascending order into a list, the list must be:
(Multiple Choice)
4.8/5
(32)
While traversing a list, a node pointer knows when it has reached the end of a list when:
(Multiple Choice)
4.8/5
(39)
The Standard Template Library (STL)provides a linked list container.
(True/False)
4.7/5
(44)
Showing 1 - 20 of 40
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)