
Binary Manipulation and Negative Numbers -
Rules -
- 0+0=0
- 0+1=1
- 1+1=10 (The 1 is carried into the next column on the left)
- 1+1+1=11 (The 1 is carried into the next column on the left)
Conversions -
Denary to Hexadecimal -
- Convert number to binary first
- Split 8 bit binary to two 4 bit binary numbers
- Find the values for both 4 bit binary numbers
- Convert to hexadecimal
Hexadecimal to Denary -
- Convert hexadecimal into 4 bit binary numbers
- add the 4 bit binary numbers to make an x bit binary number
- find the value of the x bit binary number