Electronic – Is D flip flop can be combination circuit

digital-logicflipflop

I read that circuits are two type combinational and sequential. In combinational circuit the output depends on present state/input i.e the previous state do not effect the present output. but D flip flop have characteristic equation Q(t+1)= D which means here also output at any time follow the input only … so can we say that D flip flop is a kind of combination circuit instead of sequential circuit…

Best Answer

You said, D flip flop have characteristic equation Q(t+1)= D which means here also output at any time follow the input only"

But that's not true -- the output of the D flip-flop changes state only when the CLK input goes high (rising edge trigger). At that time, Q = D. All other times, D can change and it has no effect on Q.

So the D flip-flop is sequential (has state), not combinatorial.