Find the Octal equivalent of hexa decimal number (FB2)16?a)(7652)8b)(7...
Octal Equivalent of Hexadecimal Number (FB2)16To find the octal equivalent of a hexadecimal number, we need to convert each hexadecimal digit into its equivalent binary representation and then group the binary digits into groups of three from right to left. Finally, we convert each group of three binary digits into its equivalent octal digit.
Step 1: Convert Hexadecimal to BinaryTo convert the hexadecimal number (FB2)16 to binary, we can use the following table:
Hexadecimal |
Binary |
|---|
F |
1111 |
B |
1011 |
2 |
0010 |
So, (FB2)16 in binary is 111110110010.
Step 2: Group Binary DigitsStarting from the right, group the binary digits into groups of three:
1 111 101 100 10
Step 3: Convert Binary to OctalNow, we convert each group of three binary digits into its equivalent octal digit:
1 7 5 4 2
Therefore, the octal equivalent of (FB2)16 is (17542)8.
ConclusionThe correct answer is option 'B' (7662)8.