The decimal number 255 is one less than 256, which is 16Β². In hexadecimal, 16Β² corresponds to 100ββ, so 255 must be written as 1 less than that, which is FFββ. Each F represents 15, and 15Γ16 + 15 = 240 + 15 = 255. Thus, FFββ is the correct hex representation of 255ββ.
Option A:
Option A correctly uses the relationship between powers of 16 and the decimal system. It recognises that FFββ is the maximum value in two hex digits, analogous to 255 in decimal. This makes it a standard boundary value in byte-oriented systems.
Option B:
Option B, F0ββ, equals 15Γ16 + 0 = 240 in decimal, which is smaller than 255. It neglects the contribution of the least significant digit required to reach 255. Hence it is an underestimation.
Option C:
Option C, FEββ, represents 15Γ16 + 14 = 254 in decimal, which is close but still one less than the required value. This corresponds to 254ββ, not 255ββ.
Option D:
Option D, F1ββ, corresponds to 15Γ16 + 1 = 241 in decimal, which again does not equal 255. Since only FFββ gives 255, this option cannot be correct.
Comment Your Answer
Please login to comment your answer.
Sign In
Sign Up
Answers commented by others
No answers commented yet. Be the first to comment!