Convert 720 into binary number system
Answers
Answer:
If 720 in binary is signed such as with two’s complement, then the binary code has a number of trailing zeroes, e.g. 0001011010000 in which the leftmost bit is the sign bit, followed perhaps by more trailing 0’s, and then by magnitude bits.
The reason to have the binary 720 signed is to accommodate for negative numbers, in which case the sign bit is 1 in our example. Therefore, minus 720 signed using two’s complement, will start with one or more 1’s, but the exact code for -720 decimal to binary depends on the signed number representation system and number of bits available.
Here you can convert binary to decimal. If you like to know what decimal 720 is on other number systems, we have that too:
720 in Hexadecimal = 2D016
720 in Octal = 13208
Bottom Line: 720 in binary is 1011010000 usually