Essential Terms
Completion requirements
Browse the glossary using this index
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | ALL
C
cache hitThe CPU looks for a piece of data in the ultra-fast cache memory, finds it immediately, and reads it with minimal latency. | |
cache missThe CPU looks for data in the cache, doesn't find it, and is forced to drop down to slower main memory (RAM) to fetch it, creating a costly performance penalty. | |
carry propagation delayThe physical latency window or time lag required for a carry bit to travel and stabilize through a chain of adders. In a Ripple Carry Adder, Full Adder 4 cannot calculate its final Sum until Full Adders 1, 2, and 3 have sequentially completed their operations and passed the carry bit down the wire. | |
control hazardOccurs when the processor cannot determine the next instruction to fetch because the outcome of a branch, jump, or conditional instruction has not yet been resolved. | |