• Binary is a base-2 system, using only two digits, 0 and 1.
To convert binary to denary, break the binary number into bits and assign powers of 2 (2^0, 2^1, 2^2, etc.) to each bit, starting from the rightmost bit.
Multiply each bit by its corresponding power of 2 and sum the results to get the denary value.
• Hexadecimal is a base-16 system. It utilizes digits 0-9 and letters A-F (equivalent to 10-15) to represent numbers
•
• Divide the denary number by 16, record the remainder, and continue dividing until the quotient is zero.
• Convert remainders greater than 9 into the corresponding hexadecimal letter (A for 10, B for 11, etc.).
-
-
-