SI prefixes

Convert the following from their initial radix to the other two common radices: 0b01011100, 0x123A, 221, 0b11011001, 0xC16F, 43

Number Representation Unsigned Integers If we have an n-digit unsigned numeral dn-1dn-2…d0 in radix (or base) r, then the value of that numeral is, which is basically saying that instead of a 10’s or 100’s place we have an r’s or r 2’s place. For binary, decimal, and hex r equals 2, 10, and 16, […]

Scroll to top