Converting a Integer to Binary
Let’s take a number: 78 and convert it to binary. We know an 8 bit number is between 0 and 255, let’s draw this out and use 0’s initially, where the top row represents the integer equivalent: POS 1 2 3 4 5 6 7 8 INT 128 64 32 16 8 4 2 1 […]