answersLogoWhite

0


Best Answer

It's easy to convert binary to octal. Each 3 bit group of a binary number convert to an octal value. We work right to left.

1 101 001 111 011 = 15173

User Avatar

Wiki User

2010-03-27 20:23:42
This answer is:
User Avatar
Study guides

What are advantages of Database Approach

What is a network that covers a large geographical area such as a city country or world

What is the worlds largest wan

What is a network server

➡️
See all cards
4.15
191 Reviews

Add your answer:

Earn +20 pts
Q: How Convert the binary number 1101001111011 to octal?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the C program to convert a binary number to octal number?

printf ("%d is %o in octal\n", x, x);


How do you convert binary number to octal number?

Binary is a base 2 number system, while octal is base 8. This happens to make conversion between binary and octal fairly trivial, although more complex than conversion to hexadecimal. To convert to octal from binary, take each three bits, starting from the least significant bit, and convert them to their octal equivalent. Examples: 25510 = 111111112 = 11 111 111 = 3778 17410 = 101011102 = 10 101 110 = 2568 You can repeat this process for as many bits as you need. A 24-bit number should translate into 8 octal numbers, for reference.


Hexadecimal to octal?

The best way is to first convert hexadecimal to binary and then to octal. For example the hexadcimal number B4EA is in binary: B 4 E A 1011 0100 1110 1010 Thus B4EA (hexadecimal) = 1011010011101010 (binary) We add leading zeros to the binary number in order to be able to divide the number in sets of 3 digits. Then we convert easy to octal as follows: 001 011 010 011 101 010 1 3 2 3 5 2 Therefore 1011010011101010 (binary) = 132352 (octal) and from here you have your result: B4EA (hexadecimal) = 132352 (octal)


Write a program to convert binary to octal?

Assuming the binary number is given as a string and the octal number must be, too:Initalise a result value to zero.For each digit in the binary number, from right to left:If the digit is a '1':Add (1


Why octal and hexadecimal numbers use extensively by computers' specialists?

Octal and hexadecimal numbers are used extensively by computer specialists because octal and hexadecimal are easily converted to and from binary. You simply group the binary bits into groups of 3 or 4 and then convert that group into octal or hexadecimal, or you convert the octal or hexadecimal digit into a group of 3 or 4 binary bits. With practice, you can do this at sight.

People also asked