Which of the following accurately describes the memory allocation process?

a) A process attempts to access a page. If the page is not allocated, the system throws an exception and the VMM prompts the process to commit to indicate that it wants to use the page. If the process confirms, the VMM reserves the page in virtual memory and moves the page into main memory.
b) When a process requires additional memory, it reserves space. As necessary, the process commits its reserved main memory pages to virtual memory. The process can access any committed pages.
c) Upon process creation, the VMM reserves a portion of main memory, called the working set, for that process. When a process attempts to access a page, the VMM determines whether the page is currently in the process’s working set. If it is not, the VMM loads the page into main memory, thus committing the page.
d) A process first reserves space in virtual memory. The process commits the page, telling the system to create a mapping between virtual and physical memory, before using the page. When the process accesses the page for the first time (or after it has been replaced), the VMM loads the page into main memory.


d) A process first reserves space in virtual memory. The process commits the page, telling the system to create a mapping between virtual and physical memory, before using the page. When the process accesses the page for the first time (or after it has been replaced), the VMM loads the page into main memory.

Computer Science & Information Technology

You might also like to view...

One reason to use a two-dimensional dynamic array over a two-dimensional static array would be:

A. each individual array can be adjusted in size B. a dynamic array takes far less space than a static array with the same number and types of elements C. dynamic arrays are almost 30 times as fast as a static array D. None of the above

Computer Science & Information Technology

Within the individual ____ sections of a two-dimensional array, you enter one or more values separated by commas.

A. dimension B. typeValue C. initialValues D. defaultValues

Computer Science & Information Technology

The great advantage of a Web font is that it gives a designer control over the ______used in a document.

A. theme B. style C. font D. typeface

Computer Science & Information Technology

Trace through the binary search algorithm in findInSortedList given the following input.

What will be an ideal response?

Computer Science & Information Technology