Difficulty: Easy
Correct Answer: 14
Explanation:
Introduction / Context:
Hexadecimal (base-16) digits map to decimal values 0–15. Converting single hex digits to decimal is a routine skill used in addressing, color codes, and low-level programming. The digit E in hex corresponds to a specific decimal value.
Given Data / Assumptions:
Concept / Approach:
Since E is a single hex digit, its decimal value is simply the mapping for E. No positional weighting is necessary beyond one digit (i.e., 16^0 = 1).
Step-by-Step Solution:
Recall mapping: A=10, B=11, C=12, D=13, E=14, F=15.Therefore, E16 = 14 in decimal.
Verification / Alternative check:
Check a standard hex table or compute using Unicode/ASCII hex conversion guides used in programming references.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
14
Discussion & Comments