in Digital Logic edited by
19,003 views
27 votes
27 votes

Let $A = 1111 1010$ and $B = 0000 1010$ be two $8-bit$ $2’s$ complement numbers. Their product in $2’s$ complement is

  1. $1100 0100$
  2. $1001 1100$
  3. $1010 0101$
  4. $1101 0101$
in Digital Logic edited by
19.0k views

5 Answers

35 votes
35 votes
Best answer
$A = 1111\quad 1010 = -6$
$B = 0000\quad 1010 = 10$
$A\times B = -60 =1100\quad 0100$

Correct Answer: $A$
edited by

4 Comments

edited by

60 is represented as 111100. Make it 8 bits by adding 2 leading zeroes 00111100. As negative numbers are represented in 2’s complement, therefore Its 2's complement will be 1100 0100.

4
4

$A*B=(-6)*(+10)=-60$

  1. $11000100=-60$
  2. $10011100=-100$
  3. $10100101=-91$
  4. $11010101=-43$
0
0
If the MSB is 0,  number is +ve simply convert it to decimal.

If MSB is 1, number is -ve. Invert the bits and add 1. Now convert it to decimal (don’t forget the -ve sign).

Given, A*B = -60.

option A will satisfy it
1
1
11 votes
11 votes

Explanation: Here, we have

A = 1111 1010 =  – 610 (A is a 2’s complement number)

B = 0000 1010 =  1010 (B is a 2’s complement number)

A x B = – 6010 = 1 011 11002 = 1 100 0011 (1’s complement) = 1 100 0100 (2’s complement)

Thus, the product of A and B in 2’s complement is 1100 0100, which is option A.

So, A is the correct option

1 comment

for this question wht I did first,simply multiply both numbers and the result which I got  000100111000100

after taking 2's complement of this -2500    came.plz someone verify this.

I long it is taking long time but I want to know my mistake .@shreshtha @debashish
0
0
8 votes
8 votes

In 2's complement form 

A = 11111010 = -128+64+32+16+8+2 = -6

B = 00001010 = 10

Now A* B = -60

-60 = -128+64+4 =11000100

Option : A

 

3 Comments

This seems somewhat understood able.
0
0
Does that 1 at the MSB means a negative sign?
0
0

 yes, but only for signed number.

0
0
4 votes
4 votes

 A=11111010(in 2's compliment)

Convert into decimal then A= -6

There are sequence of 1's in left side delete all consecutive 1's except last one i.e;(delete four 1's from starting) This is shortcut of finding a decimal number from 2's compliment form

11111010=1010 and (1010= -8+2= -6)

B=00001010(in 2's compliment)

Convert into decimal then B=(10 ) in decimal

(00001010)= 8+2 = 10 in decimal

A×B= (-6)×10= (-60)

How to represent (-60) in 2's compliment form?

First write +60 in binary (using 8 bit because here all options are in 8 bits)

+60 in binary=00111100

Now take 2's compliment of (00111100)=11000100=(-60) in decimal

Hence option A is right.

edited by
Answer:

Related questions