Explain number system of computer with example in each . Answer should be between 70 to 130 words
Answers
Explanation:
Meaning II: A system for representing (that is expressing or writing) numbers of a certain type. Example: There are several systems for representing the counting numbers. These include: The usual "base ten" or "decimal" system: 1, 2, 3, … , 10, 11, 12, … 99, 100, ….
Answer:
Number systems are a mechanism for representing numbers in computer architecture; each value you save or retrieve into/from computer memory has its own number system.
There are mainly kinds of number system :
- Binary number system
- Octal number system
- Decimal number system
- Hexadecimal number system
Explanation:
Binary number system
The only digits in a Binary number system are . In this number system, each number (value) is represented by
and
. Because it only contains two digits, the binary number system's base is
.
Octal number system
Only eight digits from are used in the octal numeral system. In this number system, each number (value) is represented by
. Because it only contains
digits, the octal number system's base is
.
Decimal number system
There are only ten digits in the decimal number system, ranging from In this number system, each number (value) is represented by
and
. Because it only contains
digits, the decimal number system's base is
.
Hexadecimal number system
There are sixteen alphanumeric values in the Hexadecimal number system, ranging from and A to F. In this number system, each number (value) is represented by
A,B,C,D,E, and F. Because it has
alphanumeric values, the hexadecimal number system's base is
. A is
, B is
, C is
, D is
, E is
, and F is
.