Difficulty: Medium
Correct Answer: The exclusive-OR output is a 20 µs pulse followed by a 40 µs pulse, with a separation of 15 µs between the pulses.
Explanation:
Introduction / Context:The exclusive-OR (XOR) gate outputs logic 1 when its inputs are different and logic 0 when they are the same. When pulses overlap in time, the XOR output toggles according to intervals of mismatch vs. match. Timing analysis of overlaps is a core skill for digital timing diagrams.
Given Data / Assumptions:
Concept / Approach:Partition the timeline into three intervals based on X2: before overlap, during overlap, and after overlap (while X1 is still HIGH). Evaluate XOR in each interval using the one-HIGH-only condition.
Step-by-Step Solution:
Interval 1 (0–20 µs): X1 = 1, X2 = 0 → XOR = 1 → produces a 20 µs output pulse.Interval 2 (20–35 µs): X1 = 1, X2 = 1 → XOR = 0 → this is a 15 µs separation (LOW gap) between output pulses.Interval 3 (35–75 µs): X1 = 1, X2 = 0 → XOR = 1 → produces a 40 µs output pulse.Therefore, the output is a 20 µs pulse, a 15 µs LOW gap, and then a 40 µs pulse.Verification / Alternative check:Constructing a quick timing diagram or tabulating values at the boundary points t = 0, 20, 35, 75 confirms the pulse widths and the separation. No other transitions occur since inputs are constant outside these boundaries.
Why Other Options Are Wrong:
Common Pitfalls:Confusing the overlap interval as producing an XOR high; miscounting widths; or forgetting to include the post-overlap tail while X1 remains HIGH.
Final Answer:The exclusive-OR output is a 20 µs pulse followed by a 40 µs pulse, with a separation of 15 µs between the pulses.
Discussion & Comments