Difficulty: Easy
Correct Answer: CLOCK PGT, D = 1
Explanation:
Introduction / Context:
D flip-flops sample the D input at the active clock edge and transfer it to Q. If the device is positive-edge (PGT) triggered, only a rising edge causes the state to update. Knowing which input combinations lead to a state change is key for designing registers and synchronous pipelines.
Given Data / Assumptions:
Concept / Approach:
At the rising edge, Qnext becomes the present D. To change from Q = 0 to Q = 1, present D must be 1 at the moment of the PGT. Negative-going transitions (NGT) are irrelevant to a PGT device and produce no state change under normal operation.
Step-by-Step Reasoning:
Verification / Alternative check:
Simulate or consult timing diagrams: with D = 1 held stable for setup/hold around the rising edge, Q updates to 1 immediately after the edge; with D = 0, Q remains 0. Negative edges do not trigger in a PGT device.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
CLOCK PGT, D = 1
Discussion & Comments