Design a circuit to detect when 3 and only 3 bits are set
out of 8 bits.(eg. o0101100)
Answer Posted / kalyanpa
for serially arriving stream:
use a 2 bit accumulator( S1 and S2) with outputs O1 and O2.
Final Output will be Y = ~O1 . O2
For parallel,
use combinational logic , probably priority encoder to
reduce delay.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Tell me what is interrupt latency? How can you reduce it?
Tell me why do we need virtual device drivers when we have physical device drivers?
What's your experience with technical documentation?
What are the most common errors you've found in embedded systems?
Which parameters decide the size of data type for a processor?
What is meant by a sandbox.
What is loop unrolling?
What are the differences between analytical and computational modeling?
What's risc architecture?
What are the essential components of embedded system?
Explain the properties of a object oriented programming language.
What is the volatile keyword used for?
Are you still writing code? Do you love it?
Tell me how does the interrupts handle by using the threads?
What is the scope of a function that is declared as static?