HotelInfantesAgres - Bawat tanong, may sagot. Logo

In Computer Science / Senior High School | 2024-09-08

B. Binary to Octal14.what is the binary to octal on this? 101 111 110 100​

Asked by nestorion85

Answer (1)

Answer:Here's how to convert binary to octal: 1. Group the binary digits into groups of three, starting from the right. If you don't have a full group of three at the beginning, add leading zeros.
101 111 110 100  2. Convert each group of three binary digits into its octal equivalent. - 101 = 5 (2^2 + 2^0 = 4 + 1 = 5)- 111 = 7 (2^2 + 2^1 + 2^0 = 4 + 2 + 1 = 7)- 110 = 6 (2^2 + 2^1 = 4 + 2 = 6)- 100 = 4 (2^2 = 4)3. Combine the octal equivalents. Therefore, the octal equivalent of 101 111 110 100 is 5764.

Answered by Itzfye | 2024-09-10