Exam 17: Linked Lists
Exam 1: Introduction to Computers and Programming44 Questions
Exam 2: Introduction to C++56 Questions
Exam 3: Expressions and Interactivity44 Questions
Exam 4: Making Decisions53 Questions
Exam 5: Loops and Files62 Questions
Exam 6: Functions49 Questions
Exam 7: Arrays53 Questions
Exam 8: Searching and Sorting Arrays20 Questions
Exam 10: Characters, C++-Strings, and More About the String Class42 Questions
Exam 11: Structured Data43 Questions
Exam 11: Structured Data50 Questions
Exam 12: Advanced File Operations38 Questions
Exam 13: Introduction to Classes46 Questions
Exam 14: More About Classes40 Questions
Exam 15: Inheritance, Polymorphism, and Virtual Functions38 Questions
Exam 16: Exceptions, Templates, and the Standard Template Library STL39 Questions
Exam 17: Linked Lists40 Questions
Exam 18: Stacks and Queues46 Questions
Exam 19: Recursion21 Questions
Exam 20: Binary Trees38 Questions
Select questions type
A linked list class must take care of removing the dynamically allocated nodes. This is done by ________________.
Free
(Multiple Choice)
4.8/5
(27)
Correct Answer:
B
A linked list can grow and shrink as a program runs.
Free
(True/False)
4.8/5
(39)
Correct Answer:
True
Linked lists are less complex to code and manage than arrays.
Free
(True/False)
4.7/5
(30)
Correct Answer:
False
The ________ of a linked list points to the first node in the list.
(Multiple Choice)
4.9/5
(36)
Deleting an entire list simply requires the use of the delete operator.
(True/False)
4.8/5
(38)
An insertion or deletion routine requires that you create this many pointers for use during the traversal process.
(Multiple Choice)
4.8/5
(38)
This type of list does not contain a NULL pointer at the end of the list.
(Multiple Choice)
4.8/5
(36)
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
(36)
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.8/5
(42)
If there are no nodes in a linked list, you cannot append a node to the list.
(True/False)
4.8/5
(43)
Appending a node means adding it to the end of a list. ________ a node means putting a new node in the list, but not necessarily at the end.
(Multiple Choice)
4.8/5
(39)
A list that contains pointers to the previous node, the next node, and a node in the third dimension is known as a triple-linked list.
(True/False)
4.7/5
(39)
To build a list initially, you can use a(n) ________________ routine.
(Multiple Choice)
4.8/5
(50)
Showing 1 - 20 of 40
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)