Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 419 Bytes

File metadata and controls

10 lines (7 loc) · 419 Bytes

Unsigned Binary

Know the difference between unsigned binary and signed binary.

Know that in unsigned binary the minimum and maximum values for a given number of bits, n, are 0 and 2n -1 respectively.

Unsigned binary is used to represent only positive numbers, there is no sign included and therefore the minimum and maximum values which can be stored for n bits are 0 and 2n - 1.