Answer With steps pls
Answers
Answer:
well it's not so clearly
Step 1: Write down the binary number:
1110111
Step 2: Multiply each digit of the binary number by the corresponding power of two:
1x26 + 1x25 + 1x24 + 0x23 + 1x22 + 1x21 + 1x20
Step 3: Solve the powers:
1x64 + 1x32 + 1x16 + 0x8 + 1x4 + 1x2 + 1x1 = 64 + 32 + 16 + 0 + 4 + 2 + 1
Step 4: Add up the numbers written above:
64 + 32 + 16 + 0 + 4 + 2 + 1 = 119. This is the decimal equivalent of the binary number 1110111.
1110111 = 119
Step 1: Write down the binary number
(001110111)2Group all the digits in sets of three starting from the LSB (far right). Add zeros to the left of the last digit if there aren't enough digits to make a set of three.001 110 111
Step 2: Use the table below to convert each set of three into an octal digit. In this case,001=1, 110=6, 111=7.So, the number 1110111 in binary is equivalent to 167 in octal.To convert from binary to octal use the following table:
Bin: 000 001 010 011 100 101 110 111
Octal: 0 1 2 3 4 5 6 7
1110111 = 167
(Note:First one is of (?)10 And second is of (?)8)