These are sequential number of locations inside the memory, each of which are a specific number of bits wide.
Address Locations
(T/F) The more number of bits per location affects the speed at which data can be moved from one location to another in a computer system.
True
(T/F) In general, the more bits per location the faster data can be transferred. Each memory location is referred to as an address, and generally expressed in hexadecimal notation (using base 16 numbers).
True
The processor selects a specific address in memory by placing the address on the _________
address bus
The total number of address locations which can be accessed by the processor is known as its ___________.
physical address space
This refers to how long it takes the processor to read or write to a specific memory location within a chip.
Access Time
This refers to whether or not the contents of the memory is lost when power is turned off.
Votality
A type of computer memory that can be accessed randomly; that is, any byte of memory can be accessed without touching the preceding bytes.
Random Access Memory
______ is the most common type of memory found in computers and other devices, such as printers.
RAM
It loses its data once the power is removed, so it is a volatile memory
RAM
A type of physical memory used in most personal computers.
Dynamic RAM (DRAM)
The term _______ indicates that the memory must be constantly _________ (reenergized) or it will lose its contents.
dynamic and refreshed
a type of memory that is faster and more reliable than the more common DRAM (dynamic RAM).
Static RAM (SRAM)
The term _______ is derived from the fact that it doesn't need to be refreshed like dynamic RAM.
static
A _______ is one of a small set of data holding places that are part of a computer processor .
register
A ______ may hold a computer instruction , a storage address, or any kind of data (such as a bit sequence or individual characters).
register
(T/F) Some instructions specify registers as part of the instruction.
True
A special high-speed storage mechanism. It can be either a reserved section of main memory or an independent high-speed storage device.
Cache
Fast and small compared to main memory; acts as a buffer between the CPU and main memory: it contains the most recent used memory locations (address and contents are recorded here)
Cache
______ stores data using virtual addresses
Logical cache (virtual cache)
_______ stores data using main memory physical addresses
Physical cache
Every address reference goes first to the cache; if the desired address is found there, then it is called a ________
cache hit
A ________ occurs when the address is not found.
cache miss
________ refers to the reuse of specific data, and/or resources, within a relatively small time duration.
Temporal locality
(T/F) Most software exhibits temporal locality of access, meaning that it is likely that same address will be used again soon
True
________ refers to the use of data elements within relatively close storage locations.
Spatial locality
When the update must be generated to the main memory as well as to the cache
Write-through
When the update is generated only to the cache, that will propagate it to the main memory at a latter time