Convert the binary value 1100001 (base 2) to hexadecimal (base 16). What is the correct hex representation?

Difficulty: Easy

Correct Answer: 61 (base 16)

Explanation:


Introduction / Context:
Binary-to-hex conversion proceeds by grouping bits into 4-bit nibbles from the right. Each nibble maps directly to a single hexadecimal digit (0–F), making the conversion both fast and exact.


Given Data / Assumptions:

  • Binary value: 1100001₂.
  • We will left-pad with zeros if needed to complete a nibble.
  • No sign or fractional bits are involved.


Concept / Approach:
Group from the right into nibbles: 1 1000 01 → pad to 0110 0001. Convert each nibble: 0110₂ = 6₁₆ and 0001₂ = 1₁₆. Thus, 1100001₂ = 0x61.


Step-by-Step Solution:

Pad and group: 1100001 → 0110 0001. Nibble conversions: 0110 → 6; 0001 → 1. Combine: 61₁₆.


Verification / Alternative check:
Decimal check: 1100001₂ = 97₁₀; 0x61 = 6*16 + 1 = 97; both match.


Why Other Options Are Wrong:

57₁₆ = 87₁₀; 51₁₆ = 81₁₀; 43₁₆ = 67₁₀; all differ from 97₁₀. “None” is invalid because 61₁₆ is correct.


Common Pitfalls:
Forgetting to pad the leftmost group to 4 bits; misreading 0110 as 5 instead of 6.


Final Answer:
61 (base 16)

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion