Octal
Octal is a base-8 number system that uses the digits 0 through 7. It is often used in computing as a shorthand
representation of binary numbers because each octal digit corresponds directly to three binary digits. For instance,
the binary number 110010 can be grouped into 110 and 010, which translates to
the octal number 62. Historically, octal was used in early computer systems for tasks like memory addressing,
where it simplified the representation of binary values. While less common today, it is still used in some programming
contexts, particularly in Unix-based systems, where file permissions are often expressed in octal notation.
Decimal
The decimal system, also known as the base-10 numeral system, is the most familiar and widely used number system in everyday life. It uses ten symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9. Each digit's position represents a power of 10, making it easy to perform arithmetic operations such as addition, subtraction, multiplication, and division. The decimal system is deeply ingrained in human culture and society, largely because humans have ten fingers, which historically influenced the way we count and develop numerical systems.