Menu

Lists Questions

MCQ
151.
What are different ways of implementing free lists and which is simple among them?
forum Discussion
MCQ
152.
What is buddy memory management of free lists ?
forum Discussion
MCQ
153.
How does implicit free lists(garbage collection) works in adding memory to free list ?
forum Discussion
MCQ
154.
What are the disadvantages in implementing buddy system algorithm for free lists ?
forum Discussion
MCQ
155.
Assume there is a free list which contains nodes and is filled with a value if it is already assigned and the value will be the size of requested block else will be 0. 
z = startpoint;
 while ((z < end) &&    \\ didn't reach end
   (*z <= len))          \\ too small to satisfy request
 {           
   assign this block
 }
The below code represents what ?
forum Discussion
MCQ
156.
How are free blocks linked together mostly and in what addressing order?
forum Discussion
MCQ
157.
Accessing free list very frequently for wide range of addresses can lead to
forum Discussion
MCQ
158.
Which of the following statement is true?

i) Using singly linked lists and circular list, it is not possible to traverse the list backwards.

ii) To find the predecessor, it is required to traverse the list from the first node in case of singly linked list.
forum Discussion
MCQ
159.
What is the complexity of searching for a particular element in a Singly Linked List?
forum Discussion
MCQ
160.
Which of the following statements are correct with respect to Singly Linked List(SLL) and Doubly Linked List(DLL)?
forum Discussion