answersLogoWhite

0


Best Answer

101101012 = _10 110 1012 = 2658

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How you convert 10110101 base 2 to octal?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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


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


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 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.