0% found this document useful (0 votes)
39 views6 pages

Seancala

The document describes the use of logic gates in a safety system for a kitchen elevator at Mavhudzi Zimfep High school. It outlines the truth tables and symbols for OR, AND, NOT, NOR, NAND, XOR, and XNOR gates. The logic statement and boolean expression for an alarm circuit using AND, OR, and NOT gates with inputs A, B, and C is provided along with the corresponding truth table.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views6 pages

Seancala

The document describes the use of logic gates in a safety system for a kitchen elevator at Mavhudzi Zimfep High school. It outlines the truth tables and symbols for OR, AND, NOT, NOR, NAND, XOR, and XNOR gates. The logic statement and boolean expression for an alarm circuit using AND, OR, and NOT gates with inputs A, B, and C is provided along with the corresponding truth table.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

NAME : Chipara Sean

CANDIDATE NUMBER :

CENTRE NUMBER:

LEARNING AREA : COMPUTER SCIENCE

LEVEL : L6

CALA TYPE : PRACTICAL

SYLLABUS TOPIC : COMPUTER ARCHITECTURE

SUB -TOPIC : LOGIC GATES

CALA TITLE : USE OF LOGIC GATES

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)’

6. Exclusive OR (XOR ) gate

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

iii. LOGIC STATEMENT


X = 1 IF (A = 1 AND B = 0 ) OR ( B = 1 AND C = 0)

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 )

You might also like