Difficulty: Easy
Correct Answer: 3.125 V
Explanation:
Introduction / Context:This problem assesses your understanding of how a binary-weighted R/2R ladder digital-to-analog converter (DAC) translates a 4-bit input code into a proportional analog output based on a given reference voltage. Recognizing bit weights and the step size is essential for quick mental calculations in instrumentation and embedded systems.
Given Data / Assumptions:
Concept / Approach:The ideal unipolar DAC output (non-inverting form) is Vout = (DecimalCode / 2^N) * Vref, where N is the number of bits. The LSB step size is Vref / 2^N.
Step-by-Step Solution:
Compute step size: LSB = Vref / 2^4 = 5 / 16 = 0.3125 V.Interpret the code with the stated bit order, which maps 0101 to decimal 10.Calculate output: Vout = (10 / 16) * 5 = 3.125 V.Verification / Alternative check:Weights for a 4-bit code are 8, 4, 2, 1. With the stated ordering, 0101 corresponds to 8 + 2 = 10; 10 steps * 0.3125 V per step = 3.125 V.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:3.125 V
Discussion & Comments