Menu

Lists Questions

MCQ
31.
In a singly-linked list (linear linked list), how many fields does each node consists of?
forum Discussion
MCQ
32.
The last node of the singly-linked list contains__________.
forum Discussion
MCQ
33.
A linked list contains a list pointer variable _____that stores the address of the first node of the list.
forum Discussion
MCQ
34.
To maintain a linked list in memory, how many parallel arrays of equal size are used?
forum Discussion
MCQ
35.
As memory is allocated dynamically to a linked list, a new node can be inserted anytime in the list. For this, the memory manager maintains a special linked list known as___________.
forum Discussion
MCQ
36.
While creating a linked list or inserting an element into a linked list, whenever a request for the new node arrives, the memory manager searches through the ------------for the block of desired size.
forum Discussion
MCQ
37.
What does creating a node mean?
forum Discussion
MCQ
38.
_________a list means accessing its elements one by one to process all or some of the elements.
forum Discussion
MCQ
39.
Searching a value (say, item) in a linked list means finding the position of the node, which stores ___________ as its value?
forum Discussion
MCQ
40.
A situation where the user tries to delete a node from an empty linked list is termed as___________.
forum Discussion