Exam 18: Linked Lists
Exam 1: Introduction to Computers and Programming47 Questions
Exam 2: Introduction to C62 Questions
Exam 3: Expressions and Interactivity45 Questions
Exam 4: Making Decisions51 Questions
Exam 5: Loops and Files60 Questions
Exam 6: Functions49 Questions
Exam 7: Arrays and Vectors56 Questions
Exam 8: Searching and Sorting Arrays30 Questions
Exam 9: Pointers47 Questions
Exam 10: Characters, C-Strings, and More About the String Class47 Questions
Exam 11: Structured Data46 Questions
Exam 12: Advanced File Operations38 Questions
Exam 13: Introduction to Classes54 Questions
Exam 14: More About Classes46 Questions
Exam 15: Inheritance, Polymorphism, and Virtual Functions43 Questions
Exam 16: Exceptions and Templates36 Questions
Exam 17: The Standard Template Library38 Questions
Exam 18: Linked Lists41 Questions
Exam 19: Stacks and Queues47 Questions
Exam 20: Recursion27 Questions
Exam 21: Binary Trees39 Questions
Select questions type
Select all that apply. A __________ list contains pointers to the nodes before it and after it.
(Multiple Choice)
4.8/5
(28)
A linked list can consist of structs, objects, and other abstract data types.
(True/False)
4.7/5
(31)
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)
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)
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 __________ is used to travel through a linked list and search for data.
(Multiple Choice)
4.9/5
(34)
Showing 21 - 40 of 41
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)