Which memory allocation policy allocate the largest hole to the process ?
Which memory allocation policy allocate the largest hole to the process ? Correct Answer Worst-Fit
Hints : Worst fit: The memory manage places a process in the largest block of unallocated memory available. Best fit: The allocator places a process in the smallest block of unallocated memory in which it will fit. First fit: Allocates memory from the first hole it encounters large enough to satisfy the request.