Describe how storage and memory interact.

What will be an ideal response?


When you turn on a computer or mobile device, it locates the operating system on its storage medium and loads the operating system into its memory (specifically, RAM). When you issue a command to run an application, such as a browser, the operating system locates the application on a storage medium and loads it into memory (RAM). When you are finished using the application, the operating system removes it from RAM, but the application remains on the storage medium.?A storage medium is similar to a filing cabinet that holds file folders, and memory is similar to the top of your desk. When you want to work with a file, you remove it from the filing cabinet (storage medium) and place it on your desk (memory). When you are finished with the file, you remove it from your desk (memory) and return it to the filing cabinet (storage medium).

Computer Science & Information Technology

You might also like to view...

Given the following array declaration, what value is stored in testScores[2][0]?

``` Declare Integer testScores[3][3] = 66, 77, 88, 98, 87, 76, 65, 74, 89 ``` a. 98 b. 88 c. 89 d. 65

Computer Science & Information Technology

The facts that a function assumes to be true of the arguments it receives are called _____________.

a. function input validations b. local variables c. postconditions d. preconditions e. verifications

Computer Science & Information Technology

Every object of a class maintains a (hidden) pointer to itself, and the name of this pointer is ____.

A. self B. object C. it D. this

Computer Science & Information Technology

Describe the ACPI G3 state.

What will be an ideal response?

Computer Science & Information Technology