answersLogoWhite

0


Best Answer

No. It's 010011

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: The 2's complement of binary number 101100is 010100?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

Twos complement of a given 3 or more bit binary number of non-zero magnitude is the same the original number if all bits except the?

ANSWER: MSB IS 1 In the 2's complement representation, the 2's complement of a binary number is obtained by first finding the one's complement (flipping all the bits), and then adding 1 to the result. This representation is commonly used to represent signed integers in binary form. Now, if all bits except the sign bit are the same, taking the 2's complement of the binary number will result in the negative of the original number. The sign bit (the leftmost bit) is flipped, changing the sign of the entire number. For example, let's take the 4-bit binary number 1101 The 2's complement would be obtained as follows: Find the one's complement: 0010 Add 1 to the one's complement: 0011


What is meant by self complementing binary codes?

a binary code is self complementary if complement of any code word is again a code .in self completing codes 9's complement of a number can be obtained by interchanging 0's and 1's.


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 does the word complement means in mathematics?

The "complement" of a number is another number in which each digit, when added to the corresponding digit in the original number, will add up to the largest digit of the base in which the number is expressed. That sounds far more complicated than it really is. It's easier to understand by working through it. For example, take the decimal number "1976". The complement of 1976 would be another number which, when added to 1976, gives you the value 9999. In other words, each digit, added to it's corresponding digit in the complement, should total 9. So the complement of 1976 would be 8023. Perhaps a better example would be the number 9876543210. It's complement would be 0123456789. If you add the two numbers together, you'd get 9999999999. It is important to note though, that the complement of a number will differ depending on the base number is expressed in. For example, take the number 100 in decimal. It's complement is 099. If we express that number in binary however: 1100100 it's complement would be: 0011011 which, converted back to decimal, gives us the value 27. In other words, the value of a number's complement depends on the base in which the number is expressed.


What is the minimum number of bits required to represent 18427 in two's complement?

18427(10) = 1000111111111011(2)So, it will need 16 bits (16 digits from the binary value) for 18427 itself. For the complement (the sign), add 1 more bit: the answer is 17.

Related questions

What is the 2's complement of the binary number 11000110?

The binary number 11000110 contains 1 x 2 (second column from the right). The number 11000110 = 396


Twos complement of a given 3 or more bit binary number of non-zero magnitude is the same the original number if all bits except the?

ANSWER: MSB IS 1 In the 2's complement representation, the 2's complement of a binary number is obtained by first finding the one's complement (flipping all the bits), and then adding 1 to the result. This representation is commonly used to represent signed integers in binary form. Now, if all bits except the sign bit are the same, taking the 2's complement of the binary number will result in the negative of the original number. The sign bit (the leftmost bit) is flipped, changing the sign of the entire number. For example, let's take the 4-bit binary number 1101 The 2's complement would be obtained as follows: Find the one's complement: 0010 Add 1 to the one's complement: 0011


Determine the decimal value of the signed binary number 11101000 expressed in 1s complement?

232


What is the largest positive and largest negative decimal number that can be expressed as an 8-bit 2's complement binary number?

6


What is meant by self complementing binary codes?

a binary code is self complementary if complement of any code word is again a code .in self completing codes 9's complement of a number can be obtained by interchanging 0's and 1's.


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.


Why 2's complement binary subtraction is preffered over 1's complement binary subtraction?

1


Difference in 1's and 2's Complement?

1's Complement, has two different codes for the number 0 (+0 & -0), negative numbers are the simple binary complement of positive numbers, is symmetrical (same number of negative and positive numbers can be represented), adder/subtractor must implement wraparound carry from MSB to LSB to get correct answer2's Complement, has only one code for the number 0 (+0), negative numbers are 1 greater than the simple binary complement of positive numbers, is asymmetrical (one extra negative number than positive numbers), adder/subtractor is identical to a simple unsigned binary adder/subtractor without any special carry circuits needed


How do you get the 1's complement of 100110101?

Invert the bits of each number in the binary sequence (change all 1s to 0s, and all 0s to 1s). So, you would have: 100110101 (original number) 011001010 (one's complement)


What is the integer equivalent represented by 2's complement of the binary number 10001011?

To get the 2s complement, change all 1 bits to 0s and all 0 bits to 1s, and add 1 to the result. So the 2s complement of the 8-bit binary number 10001011 is the binary integer 01110101. If you want that in decimal, then remember that each place value column is twice the value of the place value column to its right, and the rightmost place value column for an integer is 1. Thus 01110101 in decimal is 64 + 32 + 16 + 4 + 1 = 117 (And 10001011 as a signed 8-bit binary integer represents the decimal integer -117.)


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 range of signed binary number using 5 bit?

Assuming the popular 2's complement is used, the range is from -24 to +24 - 1.