__________ involves moving part or all of a process from main memory to disk.
A) ?Swapping ?
B) ?Relocating ?
C) ?Suspending ?
D) ?Blocking
A) ?Swapping ?
Computer Science & Information Technology
You might also like to view...
The default sort order in a sorted query is _________.
a. ascending b. descending c. natural d. None of the above
Computer Science & Information Technology
Which statement is the best solution for the following problem?
Write a statement that initializes a two-dimensional array of Integers named intGrades. The array will have 2 rows, with 93, 91, and 84 in the first row and 85, 89, and 91 in the second row. a. Dim intGrades(2,3) As Integer = { {93, 91, 84}, {85, 89, 91} } b. Dim intGrades(,) As Integer = { {93, 91, 84}, {85, 89, 91} } c. Dim intGrades() As Integer = { 93, 92, 84,85, 89, 91} d. Dim intGrades(1, 2) As Integer = { {93, 91, 84}, {85,89, 91} }
Computer Science & Information Technology