503 views
1 votes
1 votes

Identify the Boolean function F (ABCD) which is implemented by the following digital circuit.

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
3
srestha asked Jan 27, 2019
270 views
void foo(int n) { if(n==1) printf("#"); for(i=0;i<n;i++) foo(n-1); }Number of time # will be printed , when foo(7) is called_________