In: Computer Science
(1) Convert negative fractional decimal number to 8-bit binary number: – 6.625
Hint: –7 + 0.375
Given the hint above, the fractional number will be divided into
two parts,
- Whole number,
- Fractional part, must be positive
(2) Use 2's complement binary format to convert negative fractional decimal number to 8-bit binary number: – 6.625
(3) Proof to check that your representation calculation for (1) & (2) is correct