Difficulty: Medium
Correct Answer: 10
Explanation:
Introduction / Context:
DAC resolution links the number of bits to the smallest analog step size. Correctly relating LSB size to full-scale range is fundamental in data conversion design.
Given Data / Assumptions:
Concept / Approach:
Two common definitions exist: LSB = Vref / (2^n) or LSB = Vref / (2^n - 1). For ideal sizing and most quick estimates, LSB ≈ Vref / 2^n suffices. Using this yields a clean integer n.
Step-by-Step Solution:
Verification / Alternative check:
A 10-bit DAC has 1024 steps; LSB ≈ 5 / 1024 ≈ 4.88 mV, very close to 5 mV; the stated resolution is consistent with 10 bits.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing Vref/(2^n) and Vref/(2^n - 1); both give n ≈ 10 here, but always check the convention used in the specific DAC's datasheet.
Final Answer:
10
Discussion & Comments