Computer Number Systems
114
The binary number 100010100 converted to hexadecimal
256
The binary number 10101110 converted to octal
47
The binary number 101111 converted to decimal
A
The decimal number 10 converted to hexadecimal
2F
The decimal number 47 converted to hexadecimal
11
The decimal number 9 converted to octal
17
The hexadecimal number 11 converted to decimal
11100
The hexadecimal number 1C converted to binary
255
The largest value possible when stored in 8 bit, unsigned notation
-128
The lowest value possible when stored in 8 bit, signed notation (two's complement representation)
Binary
The number system that uses the values 0 thru 1 for digits
Octal
The number system that uses the values 0 thru 7 for digits
Hexadecimal
The number system that uses the values 0 thru 9 and letters A thru F for digits
Decimal
The number system that uses the values 0 thru 9 for digits
1110
The octal number 16 converted to binary
10
The result of adding the two binary numbers 1 + 1
1100
The result of adding the two binary numbers 1001 + 11
B
The result of adding the two hexadecimal numbers 9 + 2
AE
The sum of the two hexadecimal numbers 95+19