8,453 views

1 Answer

3 votes
3 votes

3 mux is required

Related questions

68 votes
68 votes
4 answers
1
bahirNaik asked Dec 17, 2015
82,254 views
Minimum No of Gates NAND/NOR Ex-OREx-NorHalf AdderHalf SubtractorFull AdderFull SubtractorNAND??????NOR??????
9 votes
9 votes
2 answers
2
thor asked Jan 6, 2017
8,382 views
What is the minimum Number of $2*1$ MUX required to implement HALF adder, Half Subtractor, Full Adder and Full Subtractor ?How to approach ?
0 votes
0 votes
0 answers
3
Rohit Gupta 8 asked Oct 27, 2017
1,016 views
Most efficient data structure to implement Sets of Integer and what is the complexity of operationinsert(int e),delete(int e),isMember(int e) : returns TRUE if member oth...
2 votes
2 votes
3 answers
4
Laahithyaa VS asked Sep 9, 2023
895 views
. What will be the value returned by the following function, when it is called with 11?recur (int num){if ((num / 2)! = 0 ) return (recur (num/2) *10+num%2);else return 1...