What is the base 10 equivalent of the unsigned integer stor
What is the base - 10 equivalent of the unsigned integer stored in binary as shown below? 1010101
Solution
(1010101)2 = 1x26 + 0x25 + 1x24 + 0x23 + 1x22 + 0x21 + 1x20
= 64 + 0 + 16 + 0 + 4 + 0 + 1 = 85 =(85)10
