C_Systems CH. 1 & 3 (INTRO | INFO REP) Flashcards
R.A.M
Random Access Memory
Digital
SET # of positions
Analog
Infinite # of positions
Binary
Only TWO # of Positions (IE: On or Off | 1 0r 0)
BIT
Single Binary Digit
BYTE
Eight Bits
NIBBLE
Four Bits
WORD
Refers to HOW much DATA a computer can process in a single step.
Low Order / Least Sig.
RIGHT
High Order / Most Sig.
LEFT
How Big Can We Get? **Formula (Determine smallest, highest and number of possible values for N amount of bits)
n = # of bits | 0 = smallest value | 2^n -1 highest value | 2^n = # of values possible
Convert NEG. Twos Comp.
Add all 0 places and add 1 | I.E: 10011110 –> 1+32+64 = 97 + 1 –> 98 = -98
OverFlow (V)
when two numbers w/ SAME sign added and results in OPPOSITE sign
Logical Ops ( AND | OR )
Arithmetic Shift Left
Old leftmost bit moves into the carry bit
New right most bit is a 0
DOUBLES the number
I.E: 00111010 –> 01110100