Question:easy

Binary multiplication of \(1100\) and \(1011\):

Show Hint

A quick method is to convert binary numbers into decimal, multiply them, and convert the result back to binary for verification.
Updated On: Jun 11, 2026
  • \(10000100\)
  • \(10000110\)
  • \(10001000\)
  • \(11111100\)
Show Solution

The Correct Option is A

Solution and Explanation

Step 1: Convert each binary number to decimal.
$1100_2 = 8+4 = 12$ and $1011_2 = 8+2+1 = 11$. Working in decimal first gives us a quick way to check the binary answer.
Step 2: Multiply in decimal.
$12 \times 11 = 132$.
Step 3: Break 132 into powers of two.
$132 = 128 + 4 = 2^{7} + 2^{2}$.
Step 4: Write the binary form.
Powers $7$ and $2$ are set, all others clear, giving $10000100_2$.
Step 5: Cross-check by binary long multiplication.
Adding the shifted partial products $1100 + 11000 + 1100000$ also yields $10000100_2$, matching Step 4.
Step 6: Match the option.
The product is $10000100$.
\[ \boxed{10000100} \]
Was this answer helpful?
0