Exam 17: Linked Lists
Exam 1: An Overview of Computers and Programming Languages50 Questions
Exam 2: Basic Elements of C50 Questions
Exam 3: Inputoutput50 Questions
Exam 4: Control Structures I Selection50 Questions
Exam 5: Control Structures II Repetition50 Questions
Exam 6: User-Defined Functions50 Questions
Exam 7: User-Defined Simple Data Types, Namespaces, and the String Type50 Questions
Exam 8: Arrays and Strings50 Questions
Exam 9: Records Structs50 Questions
Exam 10: Classes and Data Abstraction49 Questions
Exam 11: Inheritance and Composition50 Questions
Exam 12: Pointers, Classes, Virtual Functions, and Abstract Classes50 Questions
Exam 13: Overloading and Templates50 Questions
Exam 14: Exception Handling50 Questions
Exam 15: Recursion50 Questions
Exam 16: Searching, Sorting and the Vector Type50 Questions
Exam 17: Linked Lists50 Questions
Exam 18: Stacks and Queues50 Questions
Select questions type
The steps involved in inserting a new item at the beginning of an unordered linked list are ____.
(Multiple Choice)
4.9/5
(42)
A linked list must be searched ____________________, starting from the first node.
(Short Answer)
4.9/5
(21)
Every node in a doubly linked list has two pointers: ____ and ____.
(Multiple Choice)
4.8/5
(41)
In a linked list, the order of the nodes is determined by the address, called the ____, stored in each node.
(Multiple Choice)
4.8/5
(37)
A(n) ____________________ is an object that produces each element of a container, such as a linked list, one element at a time.
(Short Answer)
4.8/5
(26)
What is the purpose of the following code? current = head;
While (current != NULL)
{
//Process current
Current = current->link;
}
(Multiple Choice)
5.0/5
(36)
Because each node of a linked list has two components, we need to declare each node as a(n) ____.
(Multiple Choice)
4.8/5
(30)
When you build a linked list in the backward manner, a new node is always inserted at the end of the linked list.
(True/False)
5.0/5
(35)
Showing 41 - 50 of 50
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)