answersLogoWhite

0


Best Answer

1010 = 128

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the octal representation of the decimal number 10?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Basic Math

What is 10 minutes in decimal form?

A decimal number is simply a way of representing a number in such a way that the place value of each digit is ten times that of the digit to its right. A decimal representation does not require a decimal point. So the required decimal representation is 10, exactly as in the question. If you wanted 10 minutes expressed as a proportion of a day (or whatever) you should have said so.


How do you convert octal numbers to decimal numbers?

There are four main number systems in the world: the binary system, the octal system, the decimal system and the hexadecimal system. Since this article deals with 'octal to decimal: how to convert', we will discuss these two systems first before we proceed to the octal number system conversion to decimal.Decimal and Octal Number SystemEveryone knows the decimal number system. It is the main number system we use today, and has 10 discrete digits from 0 to 9. The octal system on the other hand has only 8 digits (hence the name octal). The numbers in an octal system are only from 0-7. That means, there is no 8 and 9 in a normal octal system.Now, while the decimal system is the most commonly used number system for most of the counting that we have to do, where is the octal system used? The octal system is used mainly in computer programming languages. There is a relationship between the octal and the binary system, which makes it very useful while programming computers. It is also often used in place of the hexadecimal system (16 digits), as it has fewer digits.Octal to Decimal: How to ConvertOctal to decimal conversion is one of the most commonly taught problem solving exercises in computer basics. So is there an octal to decimal formula? Yes, an octal number can be converted to a decimal number using the following formula:Decimal Form = Ʃ(ai x 8i)In this formula, 'a' is the individual digit being converted, while 'i' is the number of the digit counting from the right-most digit in the number, the right-most digit starting with 0.For example:Convert (765)8 into decimal:(765)8 = (7 x 82) + (6 x 81) + (5 x 80)= (7 x 64) + (6 x 8) + (5 x 1)= 448 + 48 + 5= 501Hence (765)8 = (501)10We'll take one more example with a four digit number:Convert (1336)8 to decimal:(1336)8 = (1 x 83) + (3 x 82) + (3 x 81) + (6 x 80)= (1 x 512) + (3 x 64) + (3 x 8) + (6 x 1)= 512 + 192 + 24 + 6= 734Thus (1336)8 = (734)10To convert an octal number to decimal, write out the number to be converted, placing each digitunder the proper positionExample:Next, multiply the decimal equivalent by the corresponding digit of the octal number; then, add thiscolumn of figures for the final solution:Solution: 7438 is equal to 4831Now follow the conversion of 265258 to decimal:Solution: 11,60510 is the decimal equivalent of 26,5258To convert a fraction or a mixed number, simply use the same procedure


What is 100g as a decimal?

A decimal number is simply a way of representing a number in such a way that the place value of each digit is ten times that of the digit to its right. A decimal representation does not require a decimal point. So the required decimal representation is 100 grams, exactly as in the question. If you wanted 100 grams expressed in other units then you need to specify which units.


What is the decimal for 410?

A decimal number is simply a way of representing a number in such a way that the place value of each digit is ten times that of the digit to its right. A decimal representation does not require a decimal point. So the required decimal representation is 410, exactly as in the question.


What is 10g as a fraction?

A decimal number is simply a way of representing a number in such a way that the place value of each digit is ten times that of the digit to its right. It may or may not contain a fractional part. If not, the decimal representation does not require a decimal point. So the decimal for 10 g is 10 g! If you want it as a decimal fraction of some other quantity then you need to specify that second quantity.

Related questions

What is the octal number equivalent to 8 in decimal?

10


What is the hexadecimal representation of the decimal number 10?

10 = A


What is the binary representation of the decimal number 10?

1010 = 10102


Write the binary number in octane notation 10100100011?

The word is "octal", not octane. Take groups of three, from the right:10 100 100 011Now, convert each group to an octal digit (same as a decimal digit:2443The word is "octal", not octane. Take groups of three, from the right:10 100 100 011Now, convert each group to an octal digit (same as a decimal digit:2443The word is "octal", not octane. Take groups of three, from the right:10 100 100 011Now, convert each group to an octal digit (same as a decimal digit:2443The word is "octal", not octane. Take groups of three, from the right:10 100 100 011Now, convert each group to an octal digit (same as a decimal digit:2443


What is the numeric value of 10?

In decimal 10. In binary 2. In octal 8 ...


What is the negative square root of 36 as a decimal?

It is -6: decimal is the representation of a number in which the place values increase by a multiple of 10 as you move to the left. It does not require a decimal point nor any 0s.It is -6: decimal is the representation of a number in which the place values increase by a multiple of 10 as you move to the left. It does not require a decimal point nor any 0s.It is -6: decimal is the representation of a number in which the place values increase by a multiple of 10 as you move to the left. It does not require a decimal point nor any 0s.It is -6: decimal is the representation of a number in which the place values increase by a multiple of 10 as you move to the left. It does not require a decimal point nor any 0s.


What is 10.56?

A decimal representation of a rational number which lies between 10 and 11.


Why are these octal codes used instead of decimal system?

Octal codes are often used to write the numerical value of a binary number because it is easier to convert from binary to octal, instead of binary to decimal. You can convert to octal on sight, and it simply requires grouping the binary bits into groups of three, whereas converting to decimal requires repeated division by 10102 or 1010. Actually, grouping into three bits is the same as dividing by 1002 or 810 so the process is really the same. Divide by 8 to get octal. Divide by 10 to get decimal.


How much is 7 10 in a decimal?

A decimal number is simply a way of representing a number in such a way that the place value of each digit is ten times that of the digit to its right. A decimal representation does not require a decimal point. So the required decimal representation is 710.


Covert 234 10 to octal system.?

The number 234 in octal is expressed as 352.


How do you write a Java program to convert a decimal number to an octal number?

public class Dataconversion { public static void main(String[] args) { System.out.println("Data types conversion example!"); int in = 44; System.out.println("Integer: " + in); //integer to binary String by = Integer.toBinaryString(in); System.out.println("Byte: " + by); //integer to hexadecimal String hex = Integer.toHexString(in); System.out.println("Hexa decimal: " + hex); //integer to octal String oct = Integer.toOctalString(in); System.out.println("Octal: " + oct); } }


Why is each decimal worth 10?

That is what decimal means. If each was worth 8, for example, it would be called an octal.