221k views
3 votes
Convert the decimal number to signed 8-bit binary: -35.

User Ayohaych
by
7.0k points

1 Answer

5 votes

Final answer:

To convert the decimal number -35 to signed 8-bit binary, follow these steps: convert the absolute value to binary, flip the bits, and add 1 to get the two's complement. The signed 8-bit binary representation of -35 is 11101101.

Step-by-step explanation:

To convert the decimal number -35 to signed 8-bit binary, you can use the following steps:

  1. Convert the absolute value of the decimal number to binary: 35 in binary is 00100011.
  2. Flip the bits (ones' complement) of the binary representation: 11101100.
  3. Add 1 to the flipped bits to get the two's complement: 11101101.

Therefore, the signed 8-bit binary representation of -35 is 11101101.

User Abdala Cerqueira
by
7.8k points