answersLogoWhite

0

What is the 2' complement of 1000 is?

Updated: 4/28/2022
User Avatar

Wiki User

9y ago

Best Answer

1111

1000

------

0111

0001

------

1000

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the 2' complement of 1000 is?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is 2's complement of 10002?

Surprise: it is -10002. (If you wanted to ask 1000(2), then it is 11111000(2))


The 2's compliment of the number 1000 is?

To get the 2s complement, find the 1s complement (by inverting the bits) and add 1. Assuming that number is [4-bit] binary it would be 1000. If it is preceded by 0s, as in, for example, 0000 1000, then it would be 1111 1000.


What is the 2's complement of 1000 0011?

To take the 2's complement:Take the 1's complement, that is, change each 1 to 0, and each 0 to 1.Add 1 to the result.


What is bigger 1's complement or 2's complement?

The same number of bits are used to represent 1's complement and 2's complement. To take 2's complement, first take the 1's complement, then add 1 to the result.


What is the 2's complement of -24?

26


What are 1's and 2's complement numbers explain?

1's complement numbers are those numbers which are obtain after converting 1 to 0 and 0 to 1. for e.g. 110010 1's complement of this number is:001101 2's complement is obtain by adding 1 in 1's complement of number. for e.g. 2's complement of above number:001101 + 1 --------------- 001110


Subtract the hexadecimal number 5634 from DAB7 using two's complement addition method?

First, write each number in binary form:DAB7 = 1101 1010 1011 01115634 = 0101 0110 0011 0100Now take the two's complement of 5634 in two steps:1's complement: 1010 1001 1100 1011Add 1 to make the 2's complement: 1010 1001 1100 1100Now add to find your result:1101 1010 1011 0111 + 1010 1001 1100 1100 = 1000 0100 1000 0011And write the result in hex:8483This works because the two's complement is the negative of the original number.


Why 2's complement representation the best choice?

Because addition and subtraction in 2's complement representation do not need to care about sign.


The twos complement of 11001101 is?

00110011 is the 2's complement for this unsigned number and 10110011 if this is a signed number


Show that 8's complement octal and 2's complement binary are exactly equivalent.?

trivial.


What is the 2's complement value of -37?

39


What differencess between one's complement and two's complement?

one's complement is a bitwise complement of a binary number. (ie, 1 becomes 0 and 0 becomes 1) A one's complement isn't really used as much as a two's complement. A two's complement is used in a system where the larges bit in a binary number represents a negative number. so the bits for a 4 bit number would have the values of (from right to left): -8, 4, 2, 1 this allows you to represent any number from -8 (1000) to positive 7 (0111) To find the two's complement of a number, you take the one's complement, and then add 1. This significant because if a computer wants to subtract two numbers, it simply takes the two's complement of the second number and adds them together. More significance arises in digital circuits when constructing circuits using only nand/nor gates, as these perform slightly faster than and/or gates.