Linked List Multiple Choice Questions | Linked List Basic Objective type questions | Linked List Java Multiple Choice questions | Linked List Basic Operations Multiple Choice Questions
Q1.linked list elements are not stored at a __________location.
- contiguous
- liner
- non contiguous
- None of these
Ans : 1
Linked list elements are not stored at a contiguous location.
Q2.linked list are linked using______.
- location
- pointers
- value
- None of these
Ans : 2
Explain : Linked list are linked using pointers.
Q3.First Node of linked list is called as,
- location
- Head
- value
- Tail
Ans : 2
Explain : First Node of linked list is called as, Head.
Q4.First Node of linked list is called as,
- location
- Head
- value
- Tail
Ans : 2
Explain : First Node of linked list is called as, Head
Q5.Each link of a linked list can store a data called,
- location
- Head
- element
- Next
Ans : 3
Explain : Each link of a linked list can store a data called an element.
Q6.Each link of a linked list contains a link to the next link called,
- location
- Head
- element
- Next
Ans : 4
Explain : Each link of a linked list contains a link to the next link called Next.
Q7.In _______ Item navigation is forward only.
- Simple Linked List
- Doubly Linked List
- Circular Linked List
- All of above
Ans : 1
Explain : In Simple Linked List Item navigation is forward only.
Q8.In _______Items can be navigated forward and backward.
- Simple Linked List
- Doubly Linked List
- Circular Linked List
- All of above
Ans : 2
Explain : In Doubly Linked List Items can be navigated forward and backward.
Q9.In _______ Last item contains link of the first element as next and the first element has a link to the last element as previous
- Simple Linked List
- Doubly Linked List
- Circular Linked List
- All of above
Ans : 3
Explain : In Circular Linked List Last item contains link of the first element as next and the first element has a link to the last element as previous.
Q10.In linked list Which operation Adds an element at the beginning of the list?
- Insertion
- Deletion
- Display
- Search
Ans : 1
Explain : Insertion operation Adds an element at the beginning of the list.