Complete the code to show where data is stored temporarily while a program runs.
The computer uses [1] to hold data temporarily during execution.RAM (Random Access Memory) is the temporary memory where data is stored while programs run. It is fast and volatile, meaning data is lost when power is off.
Complete the sentence to explain RAM's role in running programs.
When you open a program, it is loaded from the [1] into RAM for faster access.
Programs are stored on the Hard Drive permanently. When opened, they are loaded into RAM so the CPU can access them quickly.
Fix the error in the statement about RAM.
RAM keeps data saved even when the computer is turned off, so it is [1] memory.RAM is volatile memory, meaning it loses data when power is off. Permanent memory keeps data saved without power.
Fill both blanks to complete the explanation about RAM and CPU interaction.
The CPU reads data from [1] because it is faster than [2].
The CPU reads data from RAM because RAM is much faster than the Hard Drive, allowing quicker program execution.
Fill all three blanks to complete the explanation about the temporary memory hierarchy.
The levels of temporary memory are [1] (largest, slower), [2] (faster), and [3] (fastest, smallest).
RAM is the main temporary memory, Cache is smaller and faster on the CPU, Registers are tiniest and fastest inside the CPU. All are volatile and used while the program runs.