Durdanta Halderdurdanta.hashnode.dev·Jul 17, 2023How to convert Decimal number to Octal number.To convert decimal numbers to octal numbers, you can follow these steps: 1. Divide the decimal number by 8. 2. Write down the remainder. 3. Divide the quotient by 8. 4. Write down the remainder. 5. Repeat steps 3 and 4 until the quotient is zero. 6. ...Discussoctal
Gideon Batureblog.benehub.tech·May 21, 2023How to Convert from Other Bases to Decimal and from Decimal to Octal and Hexadecimal on the Bash ShellIntroduction A number base is simply the number of unique digits used to represent a number in a system. A practical example is a dozen, which consists of 12 etc. The most common one of these number bases is the Decimal or Denary as some will call it...Discuss·20 likes·39 readsoctal
Durdanta Halderdurdanta.hashnode.dev·May 14, 2023How to Convert Binary Numbers to Octal NumbersBinary numbers are numbers that use only two digits: 0 and 1. They are very useful for computers, because computers can only understand 0s and 1s. For example, the binary number 1010 means 1 × 2^3 + 0 × 2^2 + 1 × 2^1 + 0 × 2^0 = 8 + 0 + 2 + 0 = 10 in...Discuss·60 readsbinary
Jihan Binte Jashimjihanbjashim.hashnode.dev·Dec 22, 2022Number system & conversion in Computer ScienceThere are several methods to define the number system. The method of writing, representing numbers, or representing the same number in different ways is called the number system There are two types of number systems. Non-Positional Number System Po...Discuss·74 readsoctal