How do you add binary numbers?
1 + 1 = 0 where you carry 1 to the next line
1 + 1 + 1 = 1 where you carry 1 the next line
0 + 0 = 0
1 + 0 = 1
What is a binary shift also known as?
A logical shift
What happens in a binary shift to the left?
The number (in decimal) get multiplied by 2 (to the power of however many shift were done)
What happens in a binary shift the right?
The number (in decimal) get divided by 2 (to the power of however many shift were done)
What does each hex digit equate to in binary?
A nibble (four 1s and 0s)
What does moving right to left in a hexadecimal table do?
Increase in powers of 16
How do you convert from hex to decimal
How do you convert from decimal to hexadecimal?
What are the conversions from decimal to hexadecimal?
0 to 9 (in decimal) = 0 to 9 (in hex)
10 to 15 (in decimal) = A to F (in hex)
How do you convert from binary to hexadecimal?
How do you convert hexadecimal do binary?
Do computers use hex?
No, they still have to convert everything to binary
Why is hex used?
It’s simpler to remember large numbers in hex
Hex numbers are shorter - less chance of input errors
Easier to convert between binary and hex than binary and decimal
What is the number base for decimal numbers?
10
What is the number base for binary?
2
What is the number base for hexadecimal?
16