Exam 17: Linked Lists
Exam 1: Introduction to Computers and Programming40 Questions
Exam 2: Introduction to C++40 Questions
Exam 3: Expressions and Interactivity40 Questions
Exam 4: Making Decisions37 Questions
Exam 5: Looping38 Questions
Exam 6: Functions40 Questions
Exam 7: Introduction to Classes and Objects40 Questions
Exam 8: Arrays37 Questions
Exam 9: Searching, Sorting, and Algorithm Analysis36 Questions
Exam 10: Pointers50 Questions
Exam 11: More About Classes and Object-Oriented Programming64 Questions
Exam 12: More on C-Strings and the String Class38 Questions
Exam 13: Advanced File and Io Operations38 Questions
Exam 14: Recursion20 Questions
Exam 15: Polymorphism and Virtual Functions20 Questions
Exam 16: Exceptions, Templates, and the Standard Template Library STL40 Questions
Exam 17: Linked Lists38 Questions
Exam 18: Stacks and Queues36 Questions
Exam 19: Binary Trees37 Questions
Select questions type
The values stored in the value portion of a node of a linked list can be simple data types, structures, objects of classes, or any other data type.
(True/False)
4.8/5
(32)
In a doubly- linked list, each node contains a pointer to the next node in the list, as well as a pointer to
(Multiple Choice)
4.7/5
(39)
If a node is not the first node in a linked list, deleting it may require setting the successor pointer in its predecessor.
(True/False)
4.9/5
(35)
When you delete a node from a linked list, you must ensure that the links in the surrounding nodes are set to bypass the node being deleted.
(True/False)
4.9/5
(34)
A linked list class using dynamically allocated memory should free its memory when the list is destroyed. This can be done by
(Multiple Choice)
4.9/5
(33)
When using a node pointer to traverse a linked list, we know we have reached the end of a list when
(Multiple Choice)
4.8/5
(37)
The list container provided by the Standard Template Library is a template version of a
(Multiple Choice)
4.8/5
(31)
A _ is used to step through a linked list and search for data.
(Multiple Choice)
4.8/5
(33)
The successor pointer in the last node of a linked list should have its value set to
(Multiple Choice)
5.0/5
(41)
Each node in a list contains pointers to the nodes before and after it.
(Multiple Choice)
4.8/5
(31)
When you create a linked list, you must know in advance how many nodes the list will contain.
(True/False)
4.8/5
(36)
The Standard Template Library (STL)provides a linked list container.
(True/False)
4.8/5
(44)
Showing 21 - 38 of 38
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)