Design a circuit to detect when 3 and only 3 bits are set
out of 8 bits.(eg. o0101100)
Answer Posted / jayasuriya
Use a 8 bit parallel in serial out shift register. Use the
serial out bit to increment a counter(a 3 bit register), if
its one. After 8 shifts, compare the counter with 011b to
detect 3.
| Is This Answer Correct ? | 21 Yes | 1 No |
Post New Answer View All Answers
Is count down_to_zero loop better than count_up_loops?
Tell me what is interaction semantics used in embedded systems?
Tell me what are the uses of the keyword volatile?
What is the difference between locking and lockless (optimistic and pessimistic) concurrency models?
What software languages have you used to design, develop, and debug software application interfaces?
What is the purpose of using critical sections?
What are the rules followed by mutexes?
Tell me what is top half & bottom half of a kernel?
Explain me how does the interrupt architecture works?
What is pass by value and pass by reference? How are structure passed as arguments?
Why do we need virtual device drivers when we have physical device drivers?
Tell me what are the 4 types of inheritance relationship?
Tell me can static variables be declared in a header file?
Tell me why is it better to use multi-threading polling then single threading model?
Can a volatile be constant? Like