Question:
what are unassigned binary numbers?
2008-10-04 21:18:04 UTC
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:



0000 0011 = 3

0000 0010 = 2

0000 0001 = 1

0000 0000 = 0

1111 1111 = -1

1111 1110 = -2

1111 1101 = -3



Also see another recent post:

https://answersrip.com/question/index?qid=20081004214231AA4SN8H
C B
2008-10-05 04:29:28 UTC
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.
Loading...