Question
Easy

Hexadecimal conversion of $(430.25)_8$ gives

1
$(108.44)_{16}$
2
$(118.54)_{16}$
3
$(118.44)_{16}$
4
$(108.54)_{16}$
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter:
Topic:
Correct Answer
Option B
Explanation

The correct option is (2): The most reliable method for converting an Octal number to a Hexadecimal number is by first translating the Octal number into its Binary equivalent, and then grouping the Binary bits into segments of four for the Hexadecimal conversion. The given octal number is $(430.25)*8$. First, we convert each octal digit to its 3-bit binary representation: $4\_8 \\to 100\_2$, $3\_8 \\to 011\_2$, $0\_8 \\to 000\_2$, $2\_8…Read More