Transfer -101 from decimal in binary number system

  • Calculator for translating numbers between number systems online.
  • You can translate a number from one number system to any other.
  • The calculator will show the detailed progress of the solution.
  • Calculator
  • Instruction
  • Theory
  • History
  • Report a problem

Enter a number:
His number system:
Binary
Ternary
Octal
Decimal
Hexadecimal
Binary-decimal
Other
Additional
Signed
Unsigned
1 byte
2 byte
4 bytes
8 bytes

Translate the number 10110 в binary like this:

the Integer part of the number is divided by the base of the new number system:

1012
-100502
1-50252
0-24122
1-1262
0-632
0-21
1
Перевод чисел из одной системы счисления в другую

the result of the conversion was:

10110 = 11001012

You specified the size of your number 2 byte.

Add a signed bit to the number like this:

11001012 = 10000000011001012

Since the number you entered is negative, you need to translate it from the direct code to the additional one.

to do this, first perform the conversion from direct code to reverse by inverting all bits except the signed one, then get the direct code by adding 1 bit.

1000000001100101  direct code
1111111110011010 reverse code
+1 +1 bit
1111111110011011 additional code
the Final answer: -10110 = 11111111100110112 (2 byte)
Permanent link to the result of this calculation
Your score?