0% found this document useful (0 votes)
42 views

TP1 Report

This document describes experiments with digital logic gates. Experiment 1 involves verifying the truth tables of basic logic gates like AND, OR, and NOT. Experiment 2 shows that NAND and NOR gates can act as universal gates to construct other logic functions like AND, OR, and XOR. The experiments are intended to help students learn digital electronics and logic gate operations through hands-on experimentation.

Uploaded by

Danin kim
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views

TP1 Report

This document describes experiments with digital logic gates. Experiment 1 involves verifying the truth tables of basic logic gates like AND, OR, and NOT. Experiment 2 shows that NAND and NOR gates can act as universal gates to construct other logic functions like AND, OR, and XOR. The experiments are intended to help students learn digital electronics and logic gate operations through hands-on experimentation.

Uploaded by

Danin kim
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

Digital electronic Experiment Laboratory

Experiment1: verification of the truth tables of TTL gates


Basic gates:
1. AND gate (IC-7408)
The AND gate performs a logical multiplication commonly known as AND
function. The output is high when both the inputs are high. The output is low
level when any one of the inputs is low.

Compute the truth table:

Inputs Output
A B Y
0 0 0
0 1 0
1 0 0
1 1 1

2. OR gate (IC-7432)
The OR gate performs a logical addition commonly known as OR function.
The output is high when any one of the inputs is high. The output is low level
when both the inputs are low.

Complete the truth table:

A B Y
0 0 0
0 1 1
1 0 1
1 1 1

3. NOT gate (IC-7404)


The NOT gate is called an inverter. The output is high when the input is low.
The output is low when the input is high.

Complete the truth table:

A Y
0 1
1 0


Y = A′ or A

Universal gates:
1. NAND gate (IC-7400)
The NAND gate is a contraction of AND-NOT. The output is high when both inputs are
low and any one of the inputs is low. The output is low level when both inputs are high.

Complete the truth table:

A B Y
0 0 1
0 1 1
1 0 1
1 1 0
����
Y = (AB)′ or AB

2. NOR gate (IC-7402)


The NOR gate is a contraction of OR-NOT. The output is high when both inputs are low.
The output is low when one or both inputs are high.

Complete the truth table

A B Y
0 0 1
0 1 0
1 0 0
1 1 0
�������
Y = (A + B)′ or A +B

Advanced Gate:
1. XOR gate (IC-7486)
The NAND gate is a contraction of AND-NOT. The output is high when both inputs are
low and any one of the inputs is low. The output is low level when both inputs are high.

Complete the truth table:

A B Y
0 0 0
0 1 1
1 0 1
1 1 0

Experiment2: verification the NAND and NOR gates as universal logic


gates

NOT gate by using IC-7400

A Y
0 1 A Y
1 0
AND gate by using IC-7400

1 0 0
or
0 0 0
0 1 0

1 1 1
OR gate by using IC-7400

0 1 1
0 0 0 or
1 0 1

1 1 1
NOR gate by using IC-7400

0 1 0
0 0 1 or
1 0 0

1 1 0
XOR gate by using IC-7400

0 0 0 1 0 1
or
0 1 1

1 1 0
XNOR gate by using IC-7400

0 0 1 1 0 1
or
0 1 1

1 1 1

You might also like