Table of Content

Linked List MCQ : Operations on Linked List (Multiple Choice Questions)


Congratulations - you have completed Data Structure.

You scored %%SCORE%% out of %%TOTAL%%.

Your performance has been rated as %%RATING%%


Your answers are highlighted below.
Question 1
The link field in the last node of the linked list contains _________.
A
Link to the first node
B
Pointer to the next element location
C
Zero value
Question 2
When new element is added in the middle of singly linked list then ________.
A
Only elements that appear before the new element need to be moved
B
No need to move element
C
Only elements that appear after the new element need to be moved
D
Only elements that appear after the new element and before need to be moved
Question 3
Which of the following operation is performed more efficiently in doubly linked list ?
A
Searchinging a node at given position
B
Deleting a node at given position
C
Inserting a node at given position
D
None of these
Question 4
If in a linked list address of first node is 1020 then what will be the address of node at 5th position ?
A
None of these
B
1038
C
1036
D
1028
Question 4 Explanation: 
Linked list is not a linear list. Each node is allocated dynamically thus each node have random address.
Question 5
In Circular Linked List insertion of a node involves the modification of ____ links.
A
1
B
4
C
3
D
2
Once you are finished, click the button below. Any items you have not completed will be marked incorrect. Get Results
There are 5 questions to complete.