Question

Each of these 8-bit bytes can be interpreted as either a 2’s complement number or an...

Each of these 8-bit bytes can be interpreted as either

a 2’s complement number or an unsigned number. Find the decimal integer

that corresponds to each interpretation.

(a) FF

(b) 53

Homework Answers

Answer #1
a)  FF
in binary it is 11111111
since left most bit is 1. this is negative. and follow these steps below
=>  flip all the bits
    11111111 is flipped to 00000000
=>  add 1 to above result
    00000000 + 1 => 00000001
=>  convert above result to decimal
    00000001 is decimal is 1
Answer: -1

b)  53
in binary it is 01010011
since left most bit is 0. this is positive. so, directly convert this to decimal
01010011
=>  0x2^7 + 1x2^6 + 0x2^5 + 1x2^4 + 0x2^3 + 0x2^2 + 1x2^1 + 1x2^0
=>  0x128 + 1x64 + 0x32 + 1x16 + 0x8 + 0x4 + 1x2 + 1x1
=>  0 + 64 + 0 + 16 + 0 + 0 + 2 + 1
=>  83
Answer: 83
Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
1.Find the 2’s complement of 11111011. What is the decimal value of it 2.Find A-B using...
1.Find the 2’s complement of 11111011. What is the decimal value of it 2.Find A-B using 2’s complement if A=1010 and B=11100 3. A) What is the range of numbers in a 4-bit machine if unsigned integer format is used. B) What is the smallest and largest number when 2’s complement format is used.
The 8-bit signed binary 2's complement number equal to the decimal number -73 is [a].
The 8-bit signed binary 2's complement number equal to the decimal number -73 is [a].
Given a 8 bit binary sequence 01111001, show the decimal number it represents in unsigned integer,...
Given a 8 bit binary sequence 01111001, show the decimal number it represents in unsigned integer, sign-magnitude, one's complement, two's complement and execess-127.
Express the decimal number (-37)10 as an 8-bit 2's complement binary number. Given the two signed...
Express the decimal number (-37)10 as an 8-bit 2's complement binary number. Given the two signed binary numbers (2's comp.) X = -8 and Y = 14, what is their sum? What is the BCD representation of the decimal value (9371)10?
6. What decimal number does the bit pattern 0xBF800000 represent if it is: A two's complement...
6. What decimal number does the bit pattern 0xBF800000 represent if it is: A two's complement integer An unsigned integer A floating point number assuming the IEE 754 single precision format PLEASE EXPLAIN AND SHOW WORK
Express the decimal number (25)10 as an 8-bit unsigned binary number. Express the decimal number (-37)10...
Express the decimal number (25)10 as an 8-bit unsigned binary number. Express the decimal number (-37)10 as an 8-bit sign-magnitude binary number. Express the decimal number (-37)10 as an 8-bit 1's complement binary number.
A and B are two 8-bit 2’s complement numbers. The result of A & B is...
A and B are two 8-bit 2’s complement numbers. The result of A & B is 10011000 and the result of A ^ B is 00100110. (a) What is the sum A + B expressed in 8-bit two’s complement notation (use 1s and 0s, e.g. 10100101)? Will the carry flag be set? Will the overflow flag be set?
Express the following 2’s complement number in decimal form, assume leftmost bit is the sign bit....
Express the following 2’s complement number in decimal form, assume leftmost bit is the sign bit. 1000110                            b. 011101                                c. 111111 d.   100000001                        e. 101                                      f. 00011111 g. 101001010                          h. 11                                        i. 10001
Question 6 The following number is in four-bit, two's complement notation. Translate it into its decimal...
Question 6 The following number is in four-bit, two's complement notation. Translate it into its decimal equivalent. 01002* Question 10 Add the following binary numbers in four-bit, two's complement notation. 10012* Question 12 Exactly how many bytes are in the following? (In notation) 2 K Question 13 Exactly how many bits are in the following? (In notation) 8 KB
Consider the number below, which is stored inside a computer which uses 16-bit 2’s complement base...
Consider the number below, which is stored inside a computer which uses 16-bit 2’s complement base 2 representation. 1101011001110101 (a) Is this number negative? Why, or why not? (b) Show the resulting value (“bit pattern”) after apply the 2’s complement negation operation to the given value. Is the resulting 2’s complement value (“bit pattern”) a negative number? Explain your answer.
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT