Virtual memory replacement strategies determine ________.

b) how many pages should be added to main memory
c) which pages should be brought into memory because a process is likely to reference them soon
d) which page or segment to remove to provide space for an incoming page or segment


d) which page or segment to remove to provide space for an incoming page or segment

Computer Science & Information Technology

You might also like to view...

When the nested loop of lines 8-11 is done executing, why is it that lines 10-11 will have been executed exactly n times?

``` 1 COUNTING-SORT( A ) 2 make an Array C of length k + 1 3 for each i, from 0 to k 4 C[ i ] = 0 5 for each j, from 0 to the length of A - 1 6 C[ A[ j ] ]++ 7 j = 0 8 for each i from 0 to k 9 for each m from 1 to C[ i ] 10 A[ j ] = i 11 j++ ``` A. C[i] will be 0 much of the time, but it will be equal to n one time B. Each C[ i ] will be equal to n / (k + 1) C. Array A has a blocker in it, which prevents more than n elements being written into it. D. All the C[ i ], from i = 0 to i = k, when added together, will give the total number of elements in array A

Computer Science & Information Technology

A predefined formula is called a:

A) filter. B) data bar. C) function. D) criteria.

Computer Science & Information Technology

Which feature automatically creates an embedded macro in a control?

What will be an ideal response?

Computer Science & Information Technology

What switch feature allows you to connect a network sniffer to a switch port and tells the switch to send a copy of frames seen on one port out the port to which your network sniffer is connected?

a. Port interception b. Port duplexing c. Port mirroring d. Port redirect

Computer Science & Information Technology