
Module 6: Linked List Quiz
Quiz by Keavy Anne Allyson De Leon
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
A collection of components, called nodes.
A field of linked list node that stores the address of the next node
The address of the first node in the list is stored in a separate location is called
A complex type of linked list in which a node contains a pointer to the previous as well as the next node in the sequence.
A type of linked list that don't have NULL pointer
Insertion and deletion is easier in Linked List than Array
Linked List is fixed in size
Doubly Linked List uses more memory than Singly Linked List
Singly linked list only have links in one direction
In singly linked list node, there are 3 fields
It can be visualized as a chain of nodes, where every node points to the next node.
Consists of a number of nodes in which each node has a next pointer to the succeeding element.
A linked list that do not have ends.
A complex type of linked list in which a node contains a pointer to the previous as well as the next node in the sequence.
A linked list is a collection of components, called