Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/#505 add quiz fsm #520

Closed
3 changes: 1 addition & 2 deletions docs/binary-algebra/addition.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,4 @@ In the above example, for units place gives 1 as the submission of 1 and 0, wher
-----
1 1 0 (6)
-----
```

```
1 change: 1 addition & 0 deletions docs/binary-algebra/division.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ Another method which can achieve Division in binary is by using Binary Multiplic
0 (Remainder) ans = 6 (110) (Quotient)
------------- -------
```

1 change: 1 addition & 0 deletions docs/binary-algebra/multiplication.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ Binary multiplication requires two concepts i.e., binary addition and decimal mu
1 1 1 1 0 (30)
--------------
```

1 change: 1 addition & 0 deletions docs/binary-algebra/subtraction.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ Examples :
0 1 1 (3)
-------
```

1 change: 1 addition & 0 deletions docs/seq-design/flow-diagrams.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,4 @@ More information about ASM charts can be found in:
## References

{% bibliography --cited --file books %}

19 changes: 19 additions & 0 deletions docs/seq-design/fsm.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,22 @@ Now translate the options which are listed above into an FSM diagram/flow-chart:
{% include fsm.html %}

Lets try the soda can vending machine and look for the corresponding state changes FSM diagram in each of the above mentioned possibilities.

{:.quiz}

1. Behavior of synchronous sequential circuits represented in the graphical form is called `_____`.
1. State diagram
* Block diagram
* Flow diagram
* All of these
2. Which of the following is a type of `FSM(Finite State Machine)`?
1. Mealy State Machine
* Moore State Machine
* Both
* None
3. In `Mealy state machine` the outputs depends on ?
1. On present inputs & present states.
* Only on present states.
3. Finite State Machine is said to be `Moore state machine`?
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make same changes Here also

1. Only on present states.
* Only on present inputs & present states.