Binary ↔ Octal
Convert binary strings to octal (base 8) and vice-versa.
\text{Group binary digits in sets of 3: } 2^2 \cdot b_2 + 2^1 \cdot b_1 + 2^0 \cdot b_0
Result
Step-by-Step Calculation & Explanation
Binary to octal is computed by grouping binary digits in sets of three, starting from the right (least significant bit), and converting each group of three to its corresponding octal digit (0-7).