Explore different number base conversions with interactive cards. Flip each card to see examples and more details.
Convert binary 1011 to decimal: 1011₂ = (1 × 2^3) + (0 × 2^2) + (1 × 2^1) + (1 × 2^0) = 8 + 0 + 2 + 1 = 11₁₀
Convert decimal 13 to binary: 13 ÷ 2 = 6, remainder 1 6 ÷ 2 = 3, remainder 0 3 ÷ 2 = 1, remainder 1 1 ÷ 2 = 0, remainder 1 Binary = 1101
Convert binary 11010110 to hexadecimal: Group into 4-bit groups: 1101 0110 Convert each group: 1101 = D 0110 = 6 Hexadecimal = D6
Convert hexadecimal 2F to binary: 2 = 0010 F = 1111 Binary = 00101111
Convert binary 110101 to octal: Group into 3-bit groups: 110 101 Convert each group: 110 = 6 101 = 5 Octal = 65
Convert octal 47 to binary: 4 = 100 7 = 111 Binary = 100111