A system with ____ divides programs into parts and keep them in secondary storage, bringing each part into memory only as it is needed.

A. virtual memory
B. shared memory
C. segmented processing
D. passive multiprogramming

Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following PowerPoint features is accessed through the File tab?

A) Slide Orientation B) Header & Footer C) Print D) New Slide

Computer Science & Information Technology

What will the value of average be after the given code is executed?

``` var num = 2; var sum = 0; var average = 0; for (var count = 0; count < 3; count++) { sum = sum + num; num++; } average = parseInt)sum/count); ``` a. 5 b. 9 c. 3 d. 4.78

Computer Science & Information Technology