Computer - Number System
Computer - Number System
When we type some letters or words, the computer translates them in numbers as computers can
understand only numbers. A computer can understand the positional number system where there
are only a few symbols called digits and these symbols represent different values depending on the
position they occupy in the number.
The digit
The base of the number system (where the base is defined as the total number of digits
available in the number system)
Each position represents a specific power of the base (10). For example, the decimal number 1234
consists of the digit 4 in the units position, 3 in the tens position, 2 in the hundreds position, and 1
in the thousands position. Its value can be written as
Each position in a binary number represents a 0 power of the base (2). Example 20
Last position in a binary number represents a x power of the base (2). Example 2x where x
represents the last position - 1.
Example
Binary Number: 101012
Explore our latest online courses and learn new skills at your own pace. Enroll and become a
certified expert to boost your career.
Each position in an octal number represents a 0 power of the base (8). Example 80
Last position in an octal number represents a x power of the base (8). Example 8x where x
represents the last position - 1
Example
Octal Number: 125708
Letters represent the numbers starting from 10. A = 10. B = 11, C = 12, D = 13, E = 14, F
= 15
Each position in a hexadecimal number represents a 0 power of the base (16). Example, 160
Last position in a hexadecimal number represents a x power of the base (16). Example 16x
where x represents the last position - 1
Example
Hexadecimal Number: 19FDE16
Binary
Step Decimal Number
Number
Step 2 19FDE16 ((1 x 164) + (9 x 163) + (15 x 162) + (13 x 161) + (14 x 160))10