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
What are recursive functions? Can we make them in line?
How does inversion of control relate to dependency injection?
Would you call yourself a craftsman (craftsperson) and what does that word mean to you?
What is a semaphore? What are the different types of semaphore?
Explain various uses of timers in embedded system?
Whose blogs or podcasts do you follow? Do you blog or podcast?
What is the order of calling for the constructors and destructors in case of objects of inherited classes?
Tell me can include files be nested?
What is the difference between a web server, web farm and web garden? How would your web application need to change for each?
Why are patterns important?
Describe the structure and contents of a design document, or a set of design documents, for a multi-tiered web application.
What is size of character, integer, integer pointer, character pointer?
Why continuous integration is important?
Explain the difference between risc and cisc processor?
Can structures be passed to the functions by value?