To convert the binary number \( 110111 \) to octal, follow these steps:
1. **Group the binary digits** into sets of three, starting from the right. If necessary, add leading zeros to the leftmost group to make it three digits:
- \( 110111 \) becomes \( 110 \, 111 \).
2. **Convert each group to octal**:
- \( 110_2 \) (binary) = \( 6_8 \) (octal)
- \( 111_2 \) (binary) = \( 7_8 \) (octal)
3. **Combine the octal digits**:
- So, \( 110111_2 \) converts to \( 67_8 \).
Therefore, the binary number \( 110111 \) is equal to \( 67 \) in octal.