Describe a finite state machine that will detect three
consecutive coin tosses (of one coin) that results in heads.

Answer Posted / amar

State machine to detect 3 consecutive heads appearing in
multiple tosses;

state 1 : initial state
As long as the toss results in TAIL , in this state
If the toss results in HEAD go to state 2
state 2 : HEAD1 resulted
in the next toss , If TAIL is resulted go to
the initial state1 . If HEAD is resulted go to
state3.
state3 : HEAD2 is resulted
in the next toss , If TAIL is resulted go to
the initial state1 . If HEAD is resulted go to
state4.
state4 : HEAD3 is resulted and this is the final state
As long as the HEAD results in each next toss
be in state 4. If any toss results in TAIL go to
initial state1

Is This Answer Correct ?    76 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does a Bandgap Voltage reference work?

3371


Explain Process technology? What package was used and how did you model the package/system? What parasitic effects were considered?

700


What are the ways to Optimize the Performance of a Difference Amplifier?

1914


what is the difference between the TTL chips and CMOS chips?

655


Differences between Array and Booth Multipliers?

3638






How about voltage source?

1923


How to improve these parameters? (Cascode topology, use long channel transistors)

1792


what is the use of defpararm?

811


Explain what is multiplexer?

708


Explain Cross section of an NMOS transistor?

656


How binary number can give a signal or convert into a digital signal?

780


Are you familiar with the term snooping?

3040


what is multiplexer?

760


What are the steps required to solve setup and hold violations in vlsi?

722


Describe a finite state machine that will detect three consecutive coin tosses (of one coin) that results in heads.

2444