Answer:
The correct answer is C.
Step-by-step explanation:
You have to do 0xFF20 - 0x1037 but first, you need to convert the counts from hexadecimal base system to decimal base system using this formula:
, where position of the x₀ is the rightmost digit of the number.
Note:
- A = 10.
- B = 11.
- C = 12.
- D = 13.
- E = 14.
- F = 15.
0xFF20 = 15*16³+15*16²+2*16¹ = 65312
0x1037 = 1*16³+3*16¹+7*16⁰ = 4151
Result: 65312 - 4151 = 61161