According to temporal locality, processes are likely to reference pages that ________.
a) have been referenced recently
b) are located at address near recently referenced pages in memory
c) have been preloaded into memory
d) none of the above
a) have been referenced recently
You might also like to view...
Which of the following statements is false?
a. A DirectoryStream enables a program to iterate through the contents of a directory. b. Character-based input and output can be performed with classes Scanner and Formatter. c. A relative path contains all the directories, starting with the root directory, that lead to a specific file or directory. d. Every file or directory on a disk drive has the same root directory in its path.
When the footer is inactive, the footer text displays in ________
A) gray B) blue C) black D) green
The horizontal or vertical green bar that displays as you move an object, assisting with lining up an object.
What will be an ideal response?
Which of the following statements is true?
``` Segment 1 Segment 2 int i = 0; for (int i=0; i <= 20; ++i) while (i < 20) { { Console.WriteLine (i); ++i; } Console.WriteLine (i); } ``` a) The output from these segments is not the same. b) The scope of the control variable i is different for the two segments. c) Both (a) and (b) are true. d) Neither (a) nor (b) is true.