Which of the following is the correct octal representation of the binary…
2025
Which of the following is the correct octal representation of the binary number 101110?
- A.
57
- B.
55
- C.
54
- D.
56
Attempted by 70 students.
Show answer & explanation
Correct answer: D
The correct answer is D) 56.
Here is a quick and simple way to solve this conversion:
To convert a binary number to octal (base-8), you simply group the binary bits into sets of three, starting from the right (least significant bit) toward the left. Then, convert each 3-bit group into its decimal equivalent:
Group the bits:
101and110Convert the first group (left): 1012 = (1 x 4) + (0 x 2) + (1 x 1) = 5
Convert the second group (right): 1102 = (1 x 4) + (1 x 2) + (0 x 1) = 6
Combining the digits gives you 56 in octal.