It looks like you're new here. If you want to get involved, click one of these buttons!
Binary, like hexadecimal, can only count to 255 [...] Binary has a total of eight position
Binary, like hexadecimal, can only count to 255 [...] Binary has a total of eight position
That is just wrong.
...why these number systems are used and how to convert them back to decimal.
123 = 1 x 10^2 + 2 x 10^1 + 3 x 10^0 ?
01111011
= 0 x 2^7 + 1 x 2^6 + 1 x 2^5 + 1 x 2^4 + 1 x 2^3 + 0 x 2^2 + 1 x 2^1 + 1 x 2^0
= 0 + 64 + 32 + 16 + 8 + 0 + 2 + 1
= 123 (decimal)
W x i^3 + X x i^2 + Y x i^1 + Z x i^0