adplus-dvertising
frame-decoration

Question

How are free blocks linked together mostly and in what addressing order?

a.

circular linked list and increasing addressing order

b.

linked list and decreasing addressing order

c.

linked list and in no addressing order

d.

none of the mentioned

Answer: (a).circular linked list and increasing addressing order

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. How are free blocks linked together mostly and in what addressing order?

Similar Questions

Discover Related MCQs

Q. What are the disadvantages in implementing buddy system algorithm for free lists ?

Q. How does implicit free lists(garbage collection) works in adding memory to free list ?

Q. What is buddy memory management of free lists ?

Q. What are different ways of implementing free lists and which is simple among them?

Q. What datastructures can be used in implementing a free list?

Q. What are implicit and explicit implementations of freelists?

Q. Free lists are used in

Q. Given 10,8,6,7,9
swap the above numbers such that finally you got 6,7,8,9,10

so now reverse 10

9,7,6,8,10

now reverse 9

8,6,7,9,10

7,6,8,9,10

6,7,8,9,10

At this point 6 is ahead so no more reversing can be done so stop.

To implement above algorithm which datastructure is better and why ?

Q. Which of the following statements are true ?
i) practical application of XOR linked lists are in environments with limited space requirements, such as embedded devices.

ii)xor lists are not suitable because most garbage collectors will fail to work properly with classes or structures that don’t contain literal pointers

iii)in order to calculate the address of the next node you need to remember the address of the previous node

iv)xor lists are much efficient than single, doubly linked lists and arrays

Q. What are the important properties of xor lists

Q. Disadvantages of xor lists

Q. What does first and last nodes of a xor linked lists contain ? (let address of first and last be A and B)

Q. What does a xor linked list have ?

Q. What is xor linked list ?

Q. What is indexed skip list?

Q. Is a skip list like balanced tree?

Q. How to maintain multi-level skip list properties when insertions and deletions are done?

Q. Are the below statements true about skiplists?
In a sorted set of elements skip lists can implement the below operations

i.given a element find closest element to the given value in the sorted set in O(logn)

ii.find the number of elements in the set whose values fall a given range in O(logn)

Q. The nodes in a skip list may have many forward references. their number is determined

Q. To which datastructure are skip lists similar to in terms of time complexities in worst and best cases?