Computer Science, asked by obaid8878, 9 months ago

Represent (-48) in signed magnitude form

Answers

Answered by avantika1236
0

Explanation:

There are three standard ways to represent negative numbers

2's complement

signed magnitude

excess (or bias) notation

2's complement

The 2's complement is formed by toggling all the bits in the nubmer and then adding 1.

5 = 00000101

toggle all the bits: 11111010

add 1: 11111011

-5 = 11111011

Similar questions