0

Possible Duplicate:
Why is the output of stateful elements often named Q?

A register has D (data) as input and Q as output.
What does the Q stand for? I'm having a hard time searching for it.

user541686
  • 1,154
  • 4
  • 12
  • 22

1 Answers1

1

Q represents the output of a flip-flop or register. For an edge-triggerred flip-flop, the clock-to-Q time is the time it takes for the register output to be in a stable state after a clock edge occurs.

Jim
  • 393
  • 2
  • 9
  • One nuance: suppose the clock changes at t=0. Clock-to-Q delay is the time d when Q may **start to change**. Q does not necessarily settle at time d. – sqd Apr 07 '20 at 04:28