---Negating Binary Numbers in Twos Complement--- For each of the following binary numbers, specify the negated value in
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
---Negating Binary Numbers in Twos Complement--- For each of the following binary numbers, specify the negated value in
---Negating Binary Numbers in Twos Complement---For each of the following binary numbers, specify the negated value in binary.For this to work out, we need to negate using twos complement - flip all thebits and add 1. For example:00110011 original11001100 all bits flipped11001101 add 1For these problems, just report the final negated value, not the intermediatestep.12.) What is the negated version of: 11100001?12.answer)13.) What is the negated version of: 01001101?13.answer)14.) What is the negated version of: 10000001?14.answer)---Subtracting Binary Numbers in Twos Complement---The following problems ask you to subtract one binary number from another.While this can be done directly, it is typically easier to negate the second number(using the technique you used for problems 11 - 13), and then add the two together.Truncate your answer to 8 bits. There will be several steps, but ONLY show theanswer, in the same way as you reported problems 6 - 10. Note that this means thatyou will ALSO NEED TO SPECIFIY the overflow and carry bits where appropriate, usingthe same format used in the "Binary Addition Over Multiple Bits" section.15.) What is 11001101 -01100100?15.answer)16.) What is 01101001 -10110101?16.answer)17.) What is 10010110 -11101010?17.answer)18.) What is 10110010 -00000001?18.answer)
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!