Binary Numbers are?
Base 2
Only use the binary digits 0 and 1
Easy to encode on a compute since only 2 states need to be distinguished
Unsigned Integers are?
Encoded using binary numbers
Signed Integers are?
Most commonly encoded using the two’s complement representation
The process to negate a number is?
Take the one’s complement by changing all 0s to 1s and vise-versa.
Add 1 to the result
Hexadecimal Numbers are?
Base 16
Use the digits 0-9, A-F
Are commonly used as a shorthand for denoting 4-bit patterns
Octal Numbers are?
Base 8
Use the digits 0-7
May be shorthand for denoting 3-bit patterns
What are the different data types?
Byte (8 bits) Halfword (16 bits) Word (32 bits) Doubleword (64 bits) Quadword (128 bits)