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
When you delete a node from a list, you must ensure that the links in the list are not permanently broken.
(True/False)
4.9/5
(34)
To build a list initially, you can use a(n)________ routine.
(Multiple Choice)
4.9/5
(38)
In a circular-linked list, the last node points to the ________.
(Multiple Choice)
4.8/5
(41)
A linked list can consist of structs, objects, or other abstract data types.
(True/False)
4.8/5
(40)
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.8/5
(34)
If there are no nodes in a linked list, you cannot append a node to the list.
(True/False)
4.8/5
(39)
A linked list class must take care of removing the dynamically allocated nodes. This is done by ________.
(Multiple Choice)
4.9/5
(37)
This type of list does not contain a null pointer at the end of the list.
(Multiple Choice)
4.8/5
(35)
The list container provided by the Standard Template Library is a template version of a ________.
(Multiple Choice)
4.8/5
(39)
When you create a linked list, you must know in advance how many nodes the list will contain.
(True/False)
4.8/5
(36)
An insertion or deletion routine requires that you create this many pointers for use during the traversal process.
(Multiple Choice)
4.8/5
(29)
If new data needs to be added to a linked list, the program simply ________ and inserts it into the series.
(Multiple Choice)
4.8/5
(35)
The ________ of a linked list points to the first node in the list.
(Multiple Choice)
4.9/5
(34)
A ________ is used to travel through a linked list and search for data.
(Multiple Choice)
4.8/5
(37)
How many steps are involved in the process of deleting a node?
(Multiple Choice)
4.7/5
(40)
Deleting an entire list simply requires the use of the delete operator.
(True/False)
4.8/5
(43)
Showing 21 - 40 of 40
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)