Looks like no one added any tags here yet for you.
How do you convert from binary to denary?
Make a base 2 grid, fill it in with 1’s under the numbers that are in your binary number. Sum the numbers above the 1’s.
How do you convert from denary to binary?
Make a base 2 grid, fill in 1’s under the numbers which sum to your denary number. Fill the rest with zeros, and this is your binary number.
How do you convert from binary to hex?
Split the byte into two nibbles, convert each nibble to hex and then combine again.
How do you convert from hex to binary?
Split the hex number up, create two nibbles from the hex numbers and combine the nibbles.
How do you convert from hex to denary?
Hex to binary to denary
How do you convert from denary to hex?
Denary to binary to hex