The global LRU (gLRU) page-replacement strategy replaces the least-recently-used page in ________.

a) the least-recently-executed process
b) the lowest-priority process
c) the entire system
d) the currently executing process


c) the entire system

Computer Science & Information Technology

You might also like to view...

With a _________ infrastructure, the cloud infrastructure is made available to the general public or a large industry group and is owned by an organization selling cloud services.

A. hybrid cloud B. private cloud C public cloud D. community cloud

Computer Science & Information Technology

Write a recursive method that will compute cumulative sums in an array. To find the cumulative sums, add to each value in the array the sum of the values that precede it in the array. For example, if the values in the array are [2, 3, 1, 5, 6, 2, 7], the result will be [2, (2) + 3, (2 + 3) + 1, (2 + 3 + 1) + 5, (2 + 3 + 1 + 5) + 6, (2 + 3 + 1 + 5 + 6) + 2, (2 + 3 + 1 + 5 + 6 + 2) + 7] or [2, 5, 6, 11, 17, 19, 26]. Hint: The parenthesized sums in the previous example are the results of a recursive call.

What will be an ideal response?

Computer Science & Information Technology

How many /64 subnets can be created within a /56 prefix?

a. 256 b. 512 c. 1024 d. 2048

Computer Science & Information Technology

The ________ is the number of times that an analog wave is measured each second in an analog-to-digital conversion.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology