Computer Science, asked by loker, 3 months ago

given two numbers x = 1010100 and y= 1000011 , perform subtraction x-y using 2's complement​

Answers

Answered by amruthareddydonthi
2

Answer:

10001

Explanation:

HOPE IT'S HELP YOU ♥️♥️♥️♥️

Answered by sourasghotekar123
2

Explanation:

2's Comlement:

Two's complement is a mathematical operation on binary numbers, and is an example of a radix complement. It is used in computer science as the most common method of representing signed integers on computers, and more generally, fixed point binary values.

For example:

Binary number:00010011

1's complement:11101100

2's complement:11101101

Given:

x=1010100 and y=1000011

x= 1010100

2's complement of y=+ 0111101

sum=10010001

Discard end carry

X-Y=0010001

The project code is #SPJ2

Similar questions