1,795 views
3 votes
3 votes

2 Answers

–1 votes
–1 votes

One 8⨉1 MUX can serve the purpose with all inputs either 0 or 1

For one 8⨉1 MUX we need seven 2⨉1 MUX

So, Answer (D) 7

Related questions

1.6k
views
1 answers
1 votes
sh!va asked Mar 10, 2017
1,563 views
A 4 bit module -16 ripple counter uses JK F/F. If the propagation delay of each F/F is 50 nano seconds, the maximum clock frequency that can be used is equal to(a) 20 MHz(b) 5 MHz(c) 10 MHz(d) 4 MHz
2.4k
views
2 answers
1 votes
sh!va asked Mar 10, 2017
2,372 views
A three stage Johnson counter ring in figure is clocked at a constant frequency of fc from starting state of Q0Q1Q2 = 101. The frequency of output Q0Q1Q2 will be(a) fc / 2(b) fc /6(c) fc/ 3(d) fc /8
584
views
4 answers
1 votes
sh!va asked Mar 10, 2017
584 views
The truth tableXYF000010101111 Represent the Boolean function(a) X(b) X - Y(c) X +Y(d) Y
503
views
1 answers
0 votes
dragonball asked Apr 26, 2017
503 views
#include<stdio.h> struct { short x[5]; union { float y; long z; }u; }t; int main() { printf("short=%d\n",sizeof(short)); printf("float=%d\n",sizeof(float)); ... the answer is 16 ?Note : short : 2 bytes , float : 4 bytes , long : 4 bytes