What happens if both the inputs PRE and CLR are activated?

What happens if both the inputs PRE and CLR are activated? Correct Answer Invalid State

If preset input and clear input both are activated in the flip-flop then, Q and Q’ go to the same state simultaneously which is not possible. Hence, then flip-flop gives an invalid state as the output.

Related Questions

Clear (CLR) or preset (PRE) with a bar above them shows that they have ________
What is the difference between the following 2 C codes?
#include  //Program 1int main(){ int d, a = 1, b = 2; d = a++ + ++b; printf("%d %d %d", d, a, b);}

#include  //Program 2int main(){ int d, a = 1, b = 2; d = a++ +++b; printf("%d %d %d", d, a, b);}