convert octal 347 to hexadecimal
Answers
Answer:
(347)8 = (E7)16
Step by step solution
Step 1: Look up each octal digit to obtain the equivalent group of three binary digits. You can use the table below to make these conversions.
Octal to Binary Conversion Table
Oct: 0 1 2 3 4 5 6 7
Bin: 000 001 010 011 100 101 110 111
(3)8 = (011)2
(4)8 = (100)2
(7)8 = (111)2
Step 2: Group each value of step 1 to make a binary number.
011 100 111
(347)8 = (11100111)2
Step 3: Now convert the binary number from step 2 to hexa by grouping all the digits of the binary in sets of four starting from the LSB (far right).
1110 0111
Note: add zeros to the left of the last digit if there aren't enough digits to make a set of four.
Step 4: Convert each group of four to the corresponding hexadecimal (use the table below),
1110=E, 0111=7.
So, 347 in octal is equivalent to E7 in hexadecimal
Explanation: