Computer's Comprettyran
NUMBER SYSTEM | DECIMAL NUMBER SYSTEM | BINARY NUMBER SYSTEM | OCTAL NUMBER SYSTEM | HEXADECIMAL NUMBER SYSTEM

Home









DECIMAL NUMBER SYSTEM

 Decimal Number System

            - The decimal number system (base 10) is the number system we are all familiar with. It uses 10 different digits, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 to represent numbers. Its a place value system with the following values for its first 3 positive column.

102         101            100

decimal value               100            10                    1

  Converting Decimal To Binary

 1410

                        Q            R

14/2                 7            0

7/2                   3            1

3/2                   1            1

1/2                   0            1            11102

 2810

                        Q            R

28/2                 14          0

14/2                 7            0

7/2                   3            1

3/2                   1            1

1/2                   0            1            111002

 4710

                        Q            R

47/2                 23           1

23/2                 11          1

11/2                 5            1

5/2                   2            1

2/2                   1            0

1/2                   0            1            1011112

 3510

                        Q            R

35/2                 17           1

17/2                 8            1

8/2                   4            0

4/2                   2            0

2/2                   1            0

1/2                   0            1            1000112

 2110

                        Q            R

21/2                 10           1

10/2                 5            0

5/2                   2            1

2/2                   1            0

1/2                   0            1            101012