• edited by
5,302 views
9 9 votes

A new flipflop with inputs $X$ and $Y$, has the following property

$$\begin{array}{|c|c|c|}\hline \bf{X}&  \bf{Y}&  \bf{Current\ state}&\bf{ Next\ state}  \\\hline  0&0&Q&1 \\ 0&1&Q&\overline{Q}\\    1& 1&Q&0 \\   1&0&Q&Q \\ \hline  \end{array}$$

Which of the following expresses the next state in terms of $X,Y,$ current state?

  1. $(\overline{X}\wedge \overline{Q} )\vee (\overline{Y} \wedge Q)$
  2. $(\overline{X}\wedge Q )\vee (\overline{Y} \wedge \overline{Q})$
  3. $(X\wedge \overline{Q })\vee (Y \wedge Q)$
  4. $(X\wedge \overline{Q })\vee (\overline{Y } \wedge Q)$ 

1 Answer

4 4 votes
(EDIT: computing on the question in the comment-picture)

The State Table: ($d=$ Don't Care)

\begin{array}{|c|c|c|}\hline
 
\bf{X}&  \bf{Y}&  \bf{Qn}&\bf{ Qn+1}  \\\hline
 
0&0&0&1 \\ 0&0&1&1 \\ 0&1&0&1\\  0&1&1&0 \\  1&0&0&0 \\ 1& 0&1&1 \\  1&1&0&0 \\ 1&1&1&0 \\ \hline  
 
 \end{array}

Karnaugh Map:

\begin{array}{|c|c|c|}\hline
  \bf{}& \bf{}&  \bf{Qn}&  \bf{Qn}&\bf{}  \\\hline
 \bf{}& \bf{}&  \bf{}&  \bf{Y}&\bf{Y}  \\\hline
&1&1&0&1 \\ \bf{X}&0&1&0&0 \ \\ \hline  
 \end{array}

So answer should be (a) $(\bar{X}\wedge \bar{Q})\vee (\bar{Y} \wedge {Q})$
• edited by
Answer:
Position:
Show:

Related questions

25 25 votes
1 answers 1 answer
5.5k
5.5k views
Kathleen asked Sep 29, 2014
5,466 views
A control algorithm is implemented by the NAND – gate circuitry given in figure below, where $A$ and $B$ are state variable implemented by $D$ flip-flops, and $P$ is cont...
25 25 votes
4 answers 4 answers
6.7k
6.7k views
Arjun asked Sep 22, 2015
6,716 views
Design a $3$-bit counter using D-flip flops such that not more than one flip-flop changes state between any two consecutive states.
2 2 votes
1 1 answer
879
879 views
gatecse asked Dec 9, 2020
879 views
Which flip-flop is used to make all types of shift registers?JK flip-flopD flip-flopT flip-flopAll the options
7 7 votes
3 3 answers
7.2k
7.2k views
Satbir asked Jan 13, 2020
7,190 views
The following circuit compares two $2$-bit binary numbers, $X$ and $Y$ represented by $X_1X_0$ and $Y_1Y_0$ respectively. ($X_0$ and $Y_0$ represent Least Significant Bit...