Bird
0
0

Given the binary number 1010 1101, what is the decimal and hexadecimal equivalent?

hard📝 Application Q9 of 15
Intro to Computing - How Data is Represented
Given the binary number 1010 1101, what is the decimal and hexadecimal equivalent?
ADecimal: 173, Hex: AD
BDecimal: 175, Hex: AF
CDecimal: 171, Hex: AB
DDecimal: 190, Hex: BE
Step-by-Step Solution
Solution:
  1. Step 1: Convert binary to decimal

    Bits set: 1x128 + 0 + 1x32 + 0 + 1x8 + 1x4 + 0 + 1x1 = 128 + 32 + 8 + 4 + 1 = 173.
  2. Step 2: Convert binary to hexadecimal

    Split into nibbles: 1010 = A, 1101 = D, so hex is AD.
  3. Final Answer:

    Decimal: 173, Hex: AD -> Option A
  4. Quick Check:

    Binary 10101101 = Decimal 173, Hex AD [OK]
Quick Trick: Split bits in 4 for hex, sum powers for decimal [OK]
Common Mistakes:
  • Mixing nibble order
  • Incorrect decimal addition

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Intro to Computing Quizzes