2주차 문제은행
2주차 문제은행
9 월 23 일 수요일 문제풀이
1
1. A three-input AND-OR (AO) gate shown in Figure 1.42 pro-
duces a TRUE output if both A and B are TRUE, or if C is
TRUE. Complete a truth table for the gate.
Solution
A B C Z=A∙B Y=Z+
C
Let Z will show the output from AND gate. The
0 0 0 0 0
truth table for this will be:
0 0 1 0 1
0 1 0 0 0
0 1 1 0 1
1 0 0 0 0
1 0 1 0 1
1 1 0 1 1
1 1 1 1 1
2. A three-input OR-AND-INVERT (OAI) gate shown on right
produces a FALSE input if C is TRUE and A or B is TRUE. Oth-
erwise it produces a TRUE output. Complete a truth table for
the gate.
Solution
A B C Z=A+B Y=~(Z∙
C)
Let Z will show the output from OR gate. The
0 0 0 0 0
truth table for this will be:
0 0 1 0 1
0 1 0 0 0
0 1 1 0 1
1 0 0 0 0
1 0 1 0 1
1 1 0 1 1
1 1 1 1 1
3. Write the truth table for each of the following logic func-
tions
(a) F = A′ ⋅ B + A′ ⋅ B′ ⋅ C
(b) F = A ⋅ B’ + B′ ⋅ C + C ⋅ D’ + C ⋅ A’