D flip-flop, rising edge with D = 1 — flip-flops
corethe workhorse element
Answer
Q⁺ = 1
Why this example is worth doing
The characteristic equation is simply Q⁺ = D, which makes the D flip-flop the easiest element to reason about and the reason essentially all synchronous logic is built from it. The page shows the setup and hold window around the edge, because the equation is only true if the input is stable across that window, and a timing violation is not a logic error the truth table can show.
Try your own input in the Flip-flops & latches. SR, D, JK and T: characteristic tables, excitation tables and timing diagrams.
How the answer is reached
The probed row
D = 1, Q = 0
Output table
| D | Q | Q⁺ |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 1 |
| 1 | 1 | 1 |