answersLogoWhite

0

101101012 = _10 110 1012 = 2658

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Other Math

What is the octal equivalent of 111010?

Type your answer here... 0111010answer right is a) Group 111010 into two groups as 111 and 010 then convert each group into octal like 111=7 and 010=2. So the octal equivalent of 111010 will be 72. congrulation both are right


Example on how to convert binary to octal?

Break the Binary number into 3 bit sections from the LSB to the MSB(Right hand site). Then convert the 3 bit binary number to its octal equivalent(Multiply each 3 bit to 2^0 to 2^2). E.g. If the binary value is 1010111110110010 then 001 would be 1, 010 would be 2, 111 would be 7, 110 would be 6, 010 would be 2, etc.


Why 8 and 9 are not octal numbers?

An octal number is a number that uses base-eight notation instead of base-ten. This means that instead of having the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9, it only uses the digits 0, 1, 2, 3, 4, 5, 6, and 7. The digits 8 and nine are not used. This doesn't mean that those numbers can't be expressed though, it simply means that they are expressed differently. In octal, the value eight would be expressed as "10" and the value nine as "11".


How do you multiply 4 times 35 in base 6?

I would convert to base 10 , multiply and then convert back to base 6. 35 base 6 is 3 * 6 + 5 = 23 in base ten. 4 * 23 = 92 which is 2*36 + 3* 6 + 2 , in base 6 , the answer is 232 .


How do you convert numbers into decimals?

1. You have to know the base of the original number. 2. If the base of the original number is base 10, then you don't need to convert it to decimal because the original number is already a decimal number. This means the decimal numbering system is base 10 (i.e. it has 10 base digits-->0-9) 3. If the base of the original number is different than base 10, then you will need to use a mathematical conversion method (or a computer program/calculator) to convert the original number to decimal. For example: If the original number 1011 is a base 2 (binary) number, then you would use the following conversion method to convert it from base 2 to base 10: 1 * 2^0 = 1 * 1 = 1 1 * 2^1 = 1 * 2 = 2 0 * 2^2 = 0 * 4 = 0 1 * 2^3 = 1 * 8 = 8 Now add the right most column of numbers together (e.g.: 1+2+0+8=11). 11 is the decimal (base 10) equivalent to the original base 2 number 1011. Similar methods can be used to convert from other base numbering systems to decimal (e.g. base 5 to base 10)

Related Questions

What is binary 10110101 in base 2 when you express in base 16?

B5 in base 16.


How do you convert 100010001111 to octal?

Assuming the original is in binary, you group the digits in threes (from the right). This is similar to the use of comma separators between billions, and millions and thousands in decimal numbers.So 100010001111 = 100,010,001,111Now, convert each triplet into its octal equivalent using the following table:000 = 0 001 = 1 010 = 2 011 = 3100 = 4 101 = 5 110 = 6 111 = 7Thus the original number, converted to octal, is 4217.


What is the binary and decimal of octal 241?

1010 0001 base 2 161 base 10


What is decimal binary ocfal and hexadecimal systems?

Decimal is base 10. Binary is base 2. Octal is base 8. Hexadecimal is base 16.


How do you convert a octal to its binary number?

Convert every octal digit into three binary digit: 0->000 1->001 2->010 3->011 4->100 5->101 6->110 7->111


How can convert binary to octal?

To convert a binary number to an octal number, you need to know how an octal number is represented in binary. It is like this: 0 = 000 4 = 100 1 = 001 5 = 101 2 = 010 6 = 110 3 = 011 7 = 111 As you can see, an octal number consists of 3 'bits' (either a 0 of a 1). Now, to convert a binary number to an octal number, you first have to group the binary digits into groups of 3 bits (starting from the right). Then, you convert every group of bits into octal numbers. This way you get your binary number into an octal one. For example: (1010100111010010)2 We group them into groups of 3 bits, starting from the right. 1 010 100 111 010 010 As you see, we have a single digit left. We must add 0's to make it a group of 3 bits. 001 010 100 111 010 010 Then we convert every group into an octal number, according to the table above. 001 = 1 010 = 2 100 = 4 111 = 7 010 = 2 010 = 2 And in this way, you converted a binary number into an octal one. (1010100111010010)2 = (124722)8


Explain with example procedure to convert octal to binary number?

Convert each "digit" of the octal into a triplet of binary digits, according to the following rule: Octal Binary 0 000 1 001 2 010 3 011 4 100 5 101 6 110 7 111 So, for example, octal 53 = binary 101 011 [= decimal 43]


How do you convert hexadecimal number to octal number?

You convert numbers from any base to any other base by successive division by the target base, using the rules of division in the source base, while tracking each remainder until the result is zero. To convert from hex to octal, you successively divide by 8. Just do it in hex, not decimal. An example to convert 9C16 to 2358... 9C16 divided by 816 is 1316 remainder 516 1316 divided by 816 is 216 remainder 316 216 divided by 816 is 016 remainder 216 Write the remainders down in reverse order, 2, 3, 5, or 2358. I find it easier to convert to binary first and then convert the binary to octal. To do this, convert each hex digit to binary. Then starting at the right split the binary digits into groups of three, adding 0's at the end if needed. Each group of three converts to an octal digit. Example: A B F 2 = 1010 1011 1111 0010 = 001 010 101 111 110 010 (group by threes and add two 0's at the front) = 1 2 5 7 6 2 The trick of converting the digits works because 8 and 16 are both powers of two.


What is the octal equivalent of 111010?

Type your answer here... 0111010answer right is a) Group 111010 into two groups as 111 and 010 then convert each group into octal like 111=7 and 010=2. So the octal equivalent of 111010 will be 72. congrulation both are right


How do you convert octal to binary with 2 decimal nos?

The conversion of octal number to binary can be obtained by using two methods. First, it can be converted into decimal and then obtained decimal is converted into binary. In the second method


How do you convert 0.256 from decimal fraction to octal?

0.256 = 2*8-1 + 3*8-3 + 4*8-5 + 4*8-5 + 6*8-6 + ... = 0.203045 (Base 8), approx


How convert the binary number 110101001 to decimal then to octal?

You can use the Windows calculator to do the conversions. If you want to learn how to do it yourself:To convert binary to decimal, multiply the right-most digit with 1, the second digit (from the right) with 2, the third with 4, etc.To convert to octal, group the bits from the right to the left, in groups of 3. Convert each group to a decimal digit.