In CentOS 7, what hidden file on the hard drive is used to hold parts of programs and data files that do not fit in memory?
A. cache
B. buffer
C. memory
D. swap
Answer: D
You might also like to view...
If an object’s coordinates are X: 4 in. and Y: 6 in., it means that the object will be ________ inches over and ______ inches down.
Fill in the blank(s) with the appropriate word(s).
Given the following four patterns,
Which of the pattern is produced by the following code?
```
for (int i = 1; i <= 6; i++) {
for (int j = 6; j >= 1; j--)
System.out.print(j <= i ? j + " " : " " + " ");
System.out.println();
}
```
a. Pattern A
b. Pattern B
c. Pattern C
d. Pattern D
The left margin for a leftbound report is ____.
A. Default (1") B. 1.25" C. 1.5" D. 2"
_______________ virtualization involves running a virtual machine on your local system regardless of whether the virtual machine file is stored locally or on a central server.
Fill in the blank(s) with the appropriate word(s).