Computer Science, asked by reenasandhu2k, 1 month ago

Write the rules to multiply two Binary Number​

Answers

Answered by adyav291105
1

Answer:

Procedure to multiply two binary numbers.

There are four rules of binary multiplication which are:

  • 0 × 0 = 0.
  • 0 × 1 = 0.
  • 1 × 0 = 0.
  • 1 × 1 = 1.

hope it help u

mark me Branilest

Answered by nithinvarmau
0

Answer:

Binary multiplication, like other binary operations, is much easier, unlike the decimal multiplication when you remember the following multiplication rules. The rules of binary multiplication are:

0 × 0 = 0

0 × 1 = 0

1 × 0 = 0

1 × 1 = 1 [No borrow or carry method is applicable here]

As per these rules, it very clear, that if the binary multiplication includes 0, then it will result in zero itself. Hence,

Binary product of 0 and 0 is equal to 0

Binary product of 0 and 1 is equal to 0

Binary product of 1 and 0 is equal to 0

But,

Binary product of 1 and 1 is equal to 1.

To differentiate the rules for multiplication of binary numbers from other binary operations such as addition, subtraction and division, please refer to below given table:

Addition     Subtraction              Division

0+0 = 0           0-0 = 0                        0÷0 = 0

0+1 = 1      0-1 = 1 (1 is borrowed) 0÷1 = 0

1+0 = 1       1-0 = 1                         1÷1 = 1

1+1 = 0 (1 is carry forwarded)          1-1 = 0

Explanation:

Similar questions