• edited by
30,865 views
54 54 votes

How many $3$-to-$8$ line decoders with an enable input are needed to construct a $6$-to-$64$ line decoder without using any other logic gates?

  1. $7$
  2. $8$
  3. $9$
  4. $10$

7 Answers

Best answer
76 76 votes

Answer is C:

To get $6:64$ we need $64$ $o/p$

We have $3:8$ decode with $8$ $o/p$. So, we need $64/8=8$ decoders.

Now, to select any of this $8$ decoder we need one more decoder.

Total$=$ $8+1= 9$ decoders

• edited by
27 27 votes

Answer : C

In first Level we need 64 / 8 = 8 Decoder

In second Level to cover 8 select lines Which are coming out from 8 decoder we need  8 / 8 = 1 Decoder

Total =8+1= 9 decoders

23 23 votes

Quickest way to solve this type of problems will b:

Number of m bit MUX/DeMUX/Decoder/Encoder to construct N bit  MUX/DeMUX/Decoder/Encoder is:

ceil (N-1)/(M-1)

In given problem,  (N-1)/(M-1)= 64-1/8-1 =63/7 =9

19 19 votes

000

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 Answer: C

a total of 9 decoders are required.

(MSB) 0 0 1 1 0 0 (LSB) 

           5 4 3 2 1 0

here all the output is in normal order i.e 0, 1, 2 ...  to 63, for example input 001100, you'll see the 12th line selected.

• edited by
2 2 votes
Let me provide a general formula to solve such questions. Suppose we want to construct an $n×2^{n}$ decoder using $m×2^{m}$ decoders, assume that $n>m$. Then the general formula is $1+2^{n-m}$. Some output lines which decode the last few bits might remain unused, like when we construct $3×8$ decoder using $2×4$ decoders but the functionality works fine.
1 1 vote

Answer - (C) 9

In general to construct a log2m x m decoder using log2n x n decoders,

  • Number of levels needed, k = ceil(lognm)

  • Total number of devices needed = ((m)/(n-1))*(1-1/Nk)

Here m=64 and n=8. So k =2 and no. of devices = 9.

[log2n means logn base 2, similarly lognm means logm base n]

 

Answer:
Position:
Show:

Related questions

61 61 votes
8 answers 8 answers
22.3k
22.3k views
Ishrat Jahan asked Oct 29, 2014
22,267 views
A processor takes $12$ cycles to complete an instruction I. The corresponding pipelined processor uses $6$ stages with the execution times of $3, 2, 5, 4, 6$ and $2$ cycl...
60 60 votes
4 answers 4 answers
21.8k
21.8k views
Kathleen asked Sep 21, 2014
21,844 views
Which of the following languages is regular?$\left\{ww^R \mid w \in \{0, 1\}^+\right\}$$\left\{ww^Rx \mid x,w \in \{0, 1\}^+\right\}$$\left\{wxw^R \mid x, w \in \{0, 1\}...
70 70 votes
7 answers 7 answers
25.7k
25.7k views
Kathleen asked Sep 21, 2014
25,703 views
Which of the following is TRUE about formulae in Conjunctive Normal Form?For any formula, there is a truth assignment for which at least half the clauses evaluate to true...
88 88 votes
7 answers 7 answers
30.4k
30.4k views
Kathleen asked Sep 21, 2014
30,405 views
The control signal functions of a $4$-$bit$ binary counter are given below (where $X$ is “don’t care”):$$\small {\begin{array}{|c|c|c|c|l|}\hline\textbf{Clear}& \textb...