Podcast
Questions and Answers
Which type of linked list contains a pointer to the previous as well as the next node in the sequence?
Which type of linked list contains a pointer to the previous as well as the next node in the sequence?
- Doubly linked list (correct)
- Circular doubly linked list
- Circular singly linked list
- Singly-linked list
What does the data part of a node in a singly linked list store?
What does the data part of a node in a singly linked list store?
- The link part of the node
- The actual information represented by the node (correct)
- The address of its immediate successor
- The previous node in the sequence
In which type of linked list does the last node contain a pointer to the first node?
In which type of linked list does the last node contain a pointer to the first node?
- Circular singly linked list (correct)
- Doubly linked list
- Singly-linked list
- Circular doubly linked list
How many parts does a node in a doubly linked list consist of?
How many parts does a node in a doubly linked list consist of?
Can we have both circular singly linked list and circular doubly linked list?
Can we have both circular singly linked list and circular doubly linked list?