whats the difference between unassigned binary numbers and binary numbers?
Three answers:
pvmjcaboose
2008-10-04 22:47:07 UTC
C B's answer is mostly correct. However 11111101 is -3. In order to optimize how a processor counts (which is also related to overflow issues) a computer (x86 architecture at least) counts from:
You mean signed and unsigned binary numbers. In signed binary numbers, the first bit designates the sign of the value (where zero is positive and 1 is negative). So 00000011 is 3 and 10000011 is -3.
2008-10-08 01:16:08 UTC
I think that you mean unsigned. This means that there are only positive numbers (no negative numbers).
ⓘ
This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.