Seancala
Seancala
CANDIDATE NUMBER :
CENTRE NUMBER:
LEVEL : L6
BACKGRUND
Mavudzi Zimfep High is an educational institution offering Computer Science as learning area .The
Kitchen workers at Mavhudzi use an elevator to reach the Kitchen .Within the kitchen there is a safety
system which uses logic circuit .An alarm X sounds to show that there is trouble within the elevator
system , if input A represents ON and input B represents 0 , or if input B represents 1 and input C
represents OFF.
1. OR gate
A x
TRUTH TABLE
A B X
0 0 0
0 1 1
1 0 1
1 1 1
X = (A + B)
2.AND gate
A X
Truth Table
A B X
0 0 0
0 1 0
1 0 0
1 1 1
X = (A .B)
3. NOT gate
A X
Truth Table
A X
0 1
1 0
X = (A’)
4. NOR gate
X
Truth table
A B X
1 1 0
1 0 0
0 1 0
0 0 1
X = (A+B)’
5. NAND gate
A X
B
Truth Table
A B X
1 1 0
1 0 1
0 1 1
0 0 1
X = (A.B)’
B X
Truth Table
A B X
1 1 0
1 0 1
0 1 1
0 0 0
7. Exclusive NOR gate
A
B X
Truth Table
A B X
1 1 0
1 0 1
0 1 1
0 0 1
ii. INPUTS USED
1.AND gate
2.OR gate
3.NOT gate
BOOLEAN EXPRESSION
X = (A.B’)+(B.C’)
V.
TRUTH TABLE
A B C B’ C’ A.B’ B.C’ X
0 0 0 1 1 0 0 0
0 0 1 1 0 0 0 0
0 1 0 0 1 0 1 1
0 1 1 0 0 0 0 0
1 0 0 1 1 1 0 1
1 0 1 1 0 1 0 1
1 1 0 0 1 0 1 1
1 1 1 0 0 0 0 0
Vi )