Easy Guide for Students
Binary is a number system that only uses 0 and 1. Computers use binary to store and process information.
Students must be able to represent decimal values between 0 and 255 in binary.
Maximum 8-bit value:
Decimal: 255
Binary: 11111111
Hexadecimal (Hex) is a number system that uses 16 symbols:
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F
After 9, we use letters: A = 10, B = 11, C = 12, D = 13, E = 14, F = 15
Students must be able to represent decimal values between 0 and 255 in hexadecimal.
Maximum value:
Decimal: 255
Hexadecimal: FF
Each group of 4 binary digits equals one hex digit.
These values are equivalent and represent the largest number possible using 8 bits.