Monday, February 15, 2016

Decimal to Binary Conversion

Decimal to Binary

  • Divide the decimal number by 2 repeatedly, keeping track of remainders, until the quotient becomes zero.
  • Write the remainders in reverse order to obtain the binary number.
Convert 2510 to binary.
QuotientRemainder
25/2121(Least Significant Bit)
12/260
6/230
3/211
1/201(Most Significant Bit)
Binary equivalent of decimal 2510 is 110012

Convert 5110 to binary.
QuotientRemainder
51/2251(Least Significant Bit)
25/2121
12/260
6/230
3/211
1/201(Most Significant Bit)
Binary equivalent of decimal 5110 is 1100112



Related topics:
Binary to Decimal Conversion   |   Binary to Hexadecimal Conversion   |   Hexadecimal to Binary Conversion   |   Decimal to Hexadecimal Conversion   |   Hexadecimal to Decimal Conversion

List of topics: Microcomputer

No comments:

Post a Comment