Computer Science, asked by zeesidd07, 5 hours ago

write the rule of multiplying two binary numbers​

Answers

Answered by khatija62
2

The product of multiplying any binary number x by a single binary digit is always either 0 or x. Therefore, the multiplication of two binary numbers comes down to shifting the multiplicand left appropriately for each non-zero bit in the multiplier, and then adding the shifted numbers together.

Answered by spbankingandsscserie
1

Explanation:

The rules of two binary multiplication are:

0 × 0 = 0.

0 × 1 = 0.

1 × 0 = 0.

1 × 1 = 1

Similar questions