answersLogoWhite

0

To convert a binary number of an octal number, group each set of three bits into a group, starting from the right. Then, convert each group into its decimal equivalent. A 1 in the leftmost bit is a 4, a one in the middle bit is a 2, and a one in the right bit is a 1. For example, 101 is 4+0+1, or 5. Grouping should be as follows:

Binary: 0011010011010110

Grouped: 0 011 010 011 010 110

Octal: 032326


You may also find programs that will perform this conversion for you. Windows Calculator can perform this translation for you when using the advanced mode that shows binary/hex/octal options.

User Avatar

Wiki User

12y ago

What else can I help you with?