Q. 1
Electronics Engineering
Difficulty: easy
(1 Mark)
According to the Nyquist-Shannon Sampling Theorem, what is the minimum sampling frequency $f_s$ required to perfectly reconstruct a band-limited continuous analog signal with maximum frequency component $f_{max}$?
💡
Step-by-Step Explanation & Concept Rationale
The sampling theorem states that a continuous band-limited signal can be completely reconstructed without aliasing if and only if the sampling rate is at least twice the highest frequency component present in the signal ($f_s \ge 2 f_{max}$).
Q. 2
Electronics Engineering
Difficulty: easy
(1 Mark)
What is 'Aliasing' in digital signal processing, and how is it prevented in data acquisition systems?
💡
Step-by-Step Explanation & Concept Rationale
Frequencies exceeding $f_s/2$ create alias frequencies $|f - k f_s|$ that overlap indistinguishably with legitimate baseband signals; a steep analog low-pass filter must attenuate all signals above $f_s/2$ prior to sampling.
Q. 3
Electronics Engineering
Difficulty: medium
(1 Mark)
What is the theoretical maximum Signal-to-Quantization-Noise Ratio (SQNR) for an ideal $N$-bit Analog-to-Digital Converter sampled with a full-scale sinusoidal input?
💡
Step-by-Step Explanation & Concept Rationale
Assuming uniform quantization noise variance $\sigma_q^2 = \frac{q^2}{12}$ over the interval $[-q/2, +q/2]$, the root-mean-square signal to noise ratio evaluates to $\text{SNR} = 20\log_{10}(2^N) + 10\log_{10}(1.5) = 6.02 N + 1.76\text{ dB}$.
Q. 4
Electronics Engineering
Difficulty: easy
(1 Mark)
What is the Voltage resolution of 1 Least Significant Bit (LSB) for a 12-bit ADC with a reference voltage $V_{REF} = 3.300\text{ V}$?
💡
Step-by-Step Explanation & Concept Rationale
For an $N$-bit ADC, the step size corresponding to 1 LSB is $\frac{V_{REF}}{2^N}$. For $N=12$, $2^{12} = 4096$, so $\text{LSB} = \frac{3.300\text{ V}}{4096} = 0.80566\text{ mV} \approx 806\text{ }\mu\text{V}$.
Q. 5
Electronics Engineering
Difficulty: medium
(1 Mark)
How many precision analog voltage comparators are required in an $N$-bit Flash (Parallel) ADC architecture?
💡
Step-by-Step Explanation & Concept Rationale
A Flash ADC uses a resistive voltage divider with $2^N$ matched resistors and $2^N - 1$ comparators comparing the analog input simultaneously against all reference ladder levels in parallel within a single clock cycle.
Q. 6
Electronics Engineering
Difficulty: medium
(1 Mark)
What are the primary operational characteristics and trade-offs of a Flash ADC?
💡
Step-by-Step Explanation & Concept Rationale
Because hardware grows exponentially ($2^N - 1$), an 8-bit flash ADC needs 255 comparators, while a 16-bit flash would require 65,535 comparators, making flash ADCs practical only for ultra-fast, lower-resolution RF/oscilloscope front-ends.
Q. 7
Electronics Engineering
Difficulty: easy
(1 Mark)
How does a Successive Approximation Register (SAR) ADC determine the digital output code for an analog input voltage?
💡
Step-by-Step Explanation & Concept Rationale
A SAR ADC operates like a binary balance scale: it sets the MSB to 1, checks the comparator output, keeps the bit if input is larger (or clears it if smaller), and repeats sequentially for all $N$ bits in exactly $N$ clock cycles.
Q. 8
Electronics Engineering
Difficulty: medium
(1 Mark)
Why is an external or integrated 'Sample-and-Hold' (S/H or Track-and-Hold) amplifier circuit mandatory at the front-end of a SAR ADC?
💡
Step-by-Step Explanation & Concept Rationale
If the analog input changes by more than 0.5 LSB during the $N$ clock cycles of SAR bit testing, the binary search algorithm fails and generates massive conversion errors; the S/H freezes the voltage during conversion.
Q. 9
Electronics Engineering
Difficulty: medium
(1 Mark)
What are the defining characteristics of a Sigma-Delta ($\Delta\Sigma$ or $\Sigma\Delta$) ADC?
💡
Step-by-Step Explanation & Concept Rationale
Sigma-Delta ADCs use an analog feedback loop with an integrator to shape quantization noise, shifting noise power into high frequencies where digital low-pass decimation filters eliminate it, achieving 24-bit precision for seismic/biomedical/audio sensing.
Q. 10
Electronics Engineering
Difficulty: hard
(1 Mark)
What is 'Noise Shaping' in Sigma-Delta modulation?
💡
Step-by-Step Explanation & Concept Rationale
By placing the 1-bit quantizer inside a feedback loop with an integrator, the transfer function for quantization noise becomes $H_N(z) = 1 - z^{-1}$ (a first-order high-pass differentiator), relocating noise away from DC/baseband.
Q. 11
Electronics Engineering
Difficulty: medium
(1 Mark)
What is the 'Oversampling Ratio' (OSR) in Sigma-Delta ADC architecture?
💡
Step-by-Step Explanation & Concept Rationale
Oversampling spreads the fixed total quantization noise power $\sigma_q^2 = q^2/12$ over a wider bandwidth $f_s/2$; doubling the OSR in a 1st-order sigma-delta modulator improves SNR by 9 dB (1.5 bits of resolution).
Q. 12
Electronics Engineering
Difficulty: hard
(1 Mark)
How does a Dual-Slope (Integrating) ADC achieve exceptional rejection of 50 Hz and 60 Hz power-line AC noise?
💡
Step-by-Step Explanation & Concept Rationale
Integrating a periodic sine wave over its exact period $\int_0^T \sin(\omega t) dt = 0$ yields mathematically zero average noise contribution, giving dual-slope ADCs (used in digital multimeters) $>60\text{ dB}$ normal-mode line rejection.
Q. 13
Electronics Engineering
Difficulty: medium
(1 Mark)
In a Dual-Slope ADC, what is the mathematical relationship between input voltage $V_{in}$, reference voltage $V_{REF}$, fixed run-up time $T_1$, and measured run-down discharge time $T_2$?
💡
Step-by-Step Explanation & Concept Rationale
During run-up: $\Delta V = \frac{V_{in} T_1}{RC}$. During run-down: $\Delta V = \frac{V_{REF} T_2}{RC}$. Equating the two cancels out component values $R$ and $C$ as well as clock frequency drift: $V_{in} = V_{REF} \frac{T_2}{T_1}$.
Q. 14
Electronics Engineering
Difficulty: medium
(1 Mark)
What is the primary operational advantage of the Dual-Slope ADC equation $V_{in} = V_{REF} \frac{T_2}{T_1}$?
💡
Step-by-Step Explanation & Concept Rationale
Because $R$, $C$, and clock frequency $f_{clk}$ appear in both run-up and run-down phases, long-term component drift cancels out mathematically, delivering excellent temperature stability and linearity in lab multimeters.
Q. 15
Electronics Engineering
Difficulty: medium
(1 Mark)
What is a 'Pipeline ADC' architecture?
💡
Step-by-Step Explanation & Concept Rationale
Pipeline ADCs process samples concurrently in pipeline stages: while stage 1 digitizes sample $N$, stage 2 processes residual of sample $N-1$, yielding high throughput (1 sample per clock) with a fixed pipeline latency.
Q. 16
Electronics Engineering
Difficulty: easy
(1 Mark)
What is Differential Non-Linearity (DNL) in ADC and DAC specifications?
💡
Step-by-Step Explanation & Concept Rationale
DNL measures step uniformity: an ideal converter has $\text{DNL} = 0\text{ LSB}$. If $\text{DNL} < -1.0\text{ LSB}$, the ADC exhibits 'Missing Codes' (or non-monotonicity in a DAC).
Q. 17
Electronics Engineering
Difficulty: medium
(1 Mark)
What occurs in an Analog-to-Digital Converter if its Differential Non-Linearity is strictly less than $-1.0\text{ LSB}$ ($\text{DNL} < -1.0\text{ LSB}$)?
💡
Step-by-Step Explanation & Concept Rationale
A transition width of less than $0\text{ LSB}$ ($\text{DNL} < -1$) means the code transition point has crossed over its neighbor, skipping that code completely and creating a permanent missing code.
Q. 18
Electronics Engineering
Difficulty: easy
(1 Mark)
What is 'Monotonicity' in a Digital-to-Analog Converter (DAC)?
💡
Step-by-Step Explanation & Concept Rationale
A non-monotonic DAC exhibits a dangerous glitch where incrementing the digital code causes the analog output voltage to step downwards, destabilizing closed-loop control systems.
Q. 19
Electronics Engineering
Difficulty: medium
(1 Mark)
What is Integral Non-Linearity (INL) in ADC and DAC performance?
💡
Step-by-Step Explanation & Concept Rationale
INL represents the cumulative sum of DNL errors across the full dynamic range, measuring the overall curvature and distortion of the conversion transfer curve.
Q. 20
Electronics Engineering
Difficulty: medium
(1 Mark)
What is the 'Effective Number of Bits' (ENOB) defined as in terms of Signal-to-Noise and Distortion (SINAD)?
💡
Step-by-Step Explanation & Concept Rationale
ENOB accounts for all real-world converter imperfections (quantization noise, thermal noise, harmonic distortion, clock jitter): $\text{ENOB} = \frac{\text{SINAD}(\text{dB}) - 1.76}{6.02}$. A real 16-bit ADC may have an ENOB of 14.2 bits.
Q. 21
Electronics Engineering
Difficulty: hard
(1 Mark)
What is 'Spurious-Free Dynamic Range' (SFDR) of an ADC?
💡
Step-by-Step Explanation & Concept Rationale
SFDR measures the converter's ability to distinguish a weak target signal in the presence of strong interfering tones without spur peaks obscuring the detection threshold in radar/SDR applications.
Q. 22
Electronics Engineering
Difficulty: easy
(1 Mark)
What is 'Total Harmonic Distortion' (THD) of an analog converter?
💡
Step-by-Step Explanation & Concept Rationale
THD quantifies non-linear distortion generated by converter transfer curve non-linearities, expressed in dB or percentage relative to the fundamental signal amplitude.
Q. 23
Electronics Engineering
Difficulty: hard
(1 Mark)
What is 'Aperture Jitter' (Aperture Uncertainty, $\sigma_{t_j}$) in sample-and-hold and ADC circuits?
💡
Step-by-Step Explanation & Concept Rationale
For a fast sine wave $V(t) = A\sin(2\pi f t)$, maximum slew rate is $2\pi f A$. Aperture jitter $\sigma_{t_j}$ introduces amplitude noise that caps maximum SNR: $\text{SNR}_{jitter} = -20\log_{10}(2\pi f_{in} \sigma_{t_j})$.
Q. 24
Electronics Engineering
Difficulty: hard
(1 Mark)
What is the maximum analog input frequency $f_{max}$ that an ideal 16-bit ADC can digitize with less than 0.5 LSB error if clock aperture jitter is $\sigma_{t_j} = 1\text{ picosecond}$ ($10^{-12}\text{ s}$)?
💡
Step-by-Step Explanation & Concept Rationale
Using $f_{max} = \frac{1}{2\pi \sigma_t 2^N} = \frac{1}{2\pi \times 10^{-12} \times 65,536} = \frac{1}{4.117 \times 10^{-7}} \approx 2.43\text{ MHz}$. High resolution at high frequencies demands sub-picosecond low-jitter clocks.
Q. 25
Electronics Engineering
Difficulty: easy
(1 Mark)
What is the R-2R Ladder Digital-to-Analog Converter (DAC) architecture and why is it preferred over Binary-Weighted resistor DACs?
💡
Step-by-Step Explanation & Concept Rationale
Binary-weighted DACs need resistor ratios up to $2^N:1$ (e.g., $1\text{ k}\Omega$ to $65.5\text{ M}\Omega$ for 16-bit), which is impossible to match on silicon; R-2R ladders need only $R$ and $2R$ matching pairs.
Study Stream Progress:
Showing 25 of 61 Questions (41%)
Jump to:
Ready to Test Your Retention & Speed?
Now that you have reviewed the study questions and rationales, test yourself in our interactive 1-by-1 practice engine or take the full official timed mock exam.