output for decoder and demultiplexer

vead

Nov 27, 2011
473
Joined
Nov 27, 2011
Messages
473
I need some help to understand truth table

1 to 2 demultiplexer
input I
select line S
output D0, D1

Code:
I  S  Do  D1
0  0
0  1
1  0
1  1

how to determine D0 and D1 by boolean expression ?

2 to 4 decoder
A is the address and D is the dataline

Code:
A1  A0    D3  D2  D1  D0
0    0      
0    1      
1    0      
1    1

how to determine D0 to d4
 

(*steve*)

¡sǝpodᴉʇuɐ ǝɥʇ ɹɐǝɥd
Moderator
Jan 21, 2010
25,510
Joined
Jan 21, 2010
Messages
25,510
Perhaps you should start by describing in words what the devices do. What are you told about them?
 

vead

Nov 27, 2011
473
Joined
Nov 27, 2011
Messages
473
Perhaps you should start by describing in words what the devices do. What are you told about them?
ok look this table
I don't understand the output value of circuit
how to determine output of decoder and demultiplexer

decoder truth table
Code:
A1  A0      D3    D2    D1  D0
0    0       0    0     0     1
0    1       0    0     1     0
1    0       0    1     0     0
1    1       1    0     0     0

demultiplexer
Code:
I  S  Do  D1
0  0  0    0
0  1  0    0
1  0  1    0
1  1  0    1
 
Last edited:

(*steve*)

¡sǝpodᴉʇuɐ ǝɥʇ ɹɐǝɥd
Moderator
Jan 21, 2010
25,510
Joined
Jan 21, 2010
Messages
25,510
Perhaps you should start by describing in words what the devices do. What are you told about them?
 
Top