reshown by
435 views
1 votes
1 votes
An industrial control circuit has four inputs (A, B, C & D) which activate a single output (F) under the following operating conditions:
• C & A can never be High (1) at the same time.
• If D is high (1) and A is low (0) and at least one of the other two inputs is high, the output is active (High).
• If D & A are both low (0) and at least one of the other two inputs are High (1), the output is active.
• All other input combinations cause the output to be low (0).
Design and implement this control.
reshown by

1 Answer

0 votes
0 votes
ans  is
f(a,b,c,d)=sum of( 2,3,4,5,6,7)

Related questions

0 votes
0 votes
2 answers
2
Lohithendra Kumar asked Jun 9, 2016
346 views
Find out which part of the sentence below has an errorI don't know why he has been unreasonable anxious to solve this problema. i don't knowb. he has beenc. unreasonable ...
2 votes
2 votes
0 answers
3
gailort asked May 11, 2022
796 views
A system is based on an 8-bit microprocessor and has two I/O devices. The I/O controllers for this system use separate control and status registers. Both devices handle d...
2 votes
2 votes
2 answers
4
Khushal Kumar asked Jul 4, 2017
698 views
output of the following program is 'no' but why. #include <stdio.h>int main(){ if (sizeof(int) -1) printf("Yes"); else printf("No"); return 0;}