DS – mcq on Linked lists
The following are the objective questions on the topic related to Linked Lists in data structures using C/C++.
1.Linked list is a ___ data structure.
- Non-linear
- Linear
- Both A and B.
- None
Answer: B
2.Linked lists are suitable for ____.
- Relatively permanent collections of data
- The size of the structure and data in the structure are constantly changing.
- Both A and B
- None of the above.
Answer: B
3.Which of the operations are supported in Single linked lists?
- Stack
- Queue
- Both A and B
- None of the mentioned.
Answer: C
4. A sequence of ______ is a single linked list.
- Nodes
- Pointers
- Elements
- None of the above
Answer: A
5.In a single linked list, a node is partitioned into __ parts.
- 1
- 2
- 3
- No partition.
Answer: B
6.We use link to store the ___ of the next node.
- Actual information
- Parts
- Elements
- Address
Answer: D
7.How many link(s) does every node contains in a single linked list?
- 1
- 2
- 3
- 4
Answer: A
8. Another name of Single linked list is _________.
- 1-way list
- 2-way list
- 3-way list
- No way list
Answer: A
9.Another name of Double linked list is _________.
- 1-way list
- 2-way list
- 3-way list
- No way list
Answer: B
10. How many link(s) does every node contains in a Double linked list?
- 1
- 2
- 3
- 4
Answer: C