What is the OCTAL equivalent of the HEXADECIMAL number (ADF)16 ?
2026
What is the OCTAL equivalent of the HEXADECIMAL number (ADF)16 ?
- A.
(5467)8
- B.
(6517)8
- C.
(5437)8
- D.
(5337)8
Attempted by 67 students.
Show answer & explanation
Correct answer: D
Convert hexadecimal ADF to binary first: A=1010, D=1101, F=1111. Group binary digits into sets of three from right: 010101101111. Convert each octal digit: 2, 5, 5, 7. Final answer is 5337 in octal.