Knowledge organisersData Storage: Numbers
Denary (decimal, base 10) numbers need to be converted to binary (base 2) for computer processing. You must be able to convert both ways for numbers 0-255 using up to 8 bits.
128, 64, 32, 16, 8, 4, 2, 1.128, 64, 32, 16, 8, 4, 2, 1) when doing conversions — it reduces mistakes.00000111.2^n - 1. E.g. 6 bits = 63 (not 64). 8 bits = 255 (not 256).