Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

Assignment 1

We were asked to develop a circuit from the below truth table.


Armed Door Glass Motion Alarm
0 0 0 0 0
0 0 0 1 0
0 0 1 0 0
0 0 1 1 0
0 1 0 0 0
0 1 0 1 0
0 1 1 0 0
0 1 1 1 0
1 0 0 0 0
1 0 0 1 0
1 0 1 0 1
1 0 1 1 1
1 1 0 0 1
1 1 0 1 1
1 1 1 0 1
1 1 1 1 1

The implementation for this truth table is shown below:

Assignment 2
In assignment 2, we were asked to implement the truth table for the following
circuit:
The truth table for the above circuit is shown below:
A B C X
0 0 0 0
0 0 1 0
0 1 0 0
0 1 1 1
1 0 0 0
1 0 1 1
1 1 0 0
1 1 1 0

Assignment 3
In this assignment, we were asked to draw the truth table and implement the circuit
design of a three-input Exclusive NOR gate. We were further restricted to not use
the Exclusive NOR or Exclusive OR gates.
Here is the truth table for a three-input Exclusive NOR gate:
A B C X
0 0 0 1
0 0 1 0
0 1 0 0
0 1 1 1
1 0 0 0
1 0 1 1
1 1 0 1
1 1 1 0
The implementation of the three input Exclusive NOR gate is shown below:

You might also like