You are on page 1of 6

2019

Modern Electronics (lab)

Muhammad Shahid (404274)


Riphah International University
6/22/2019
Objectives
 Introduce logic gates
 Identify, test and use integrated circuit chip (ICs)

Apparatus
 ICs
 AND Gate (7408)
 OR Gate (7432)
 NOT Gate (7404
 NAND Gate (74LS00)
 NOR Gate (7402)
 XOR Gate (74LS86)
 XNOT Gate (74LS266)
 Jumper wires
 Wire cutter
 Connecting wire
 Bread board
 Logic trainer
 Power supply

Digital ELECTRONICS
Digital electronics involves circuits and systems in which there are only two possible states.
These states are represented by two different voltage levels: A HIGH and a LOW. The two
states can also be represented by current levels, bits and bumps on a CD or DVD, etc. In
digital systems such as computers, combinations of the two states, called codes, are used to
represent numbers, symbols, alphabetic characters, and other types of information. The
two-state number system is called binary, and its two digits are 0 and 1. A binary digit is
called a bit.

Logic Function
In its basic form, logic is the realm of human reasoning that tells you a certain proposition is
true if certain conditions are true. Propositions can be classified as true or false. Many
situations and processes that you encounter in your daily life can be expressed in the form
of propositional, or logic, functions. Since such functions are true/false or yes/no
statements, digital circuits with their two-state characteristics are applicable.
Logic Gate
In electronics, a logic gate is an idealized or physical device implementing a Boolean
function; that is, it performs a logical operation on one or more binary inputs and produces
a single binary output.

AND Gate
The AND function produces a HIGH output only when all the inputs are HIGH. When one
input is HIGH and the other input is HIGH, the output is HIGH. When any or all inputs are
LOW, the output is LOW. The AND function is implemented by a logic circuit known as an
AND gate.(7408)

Boolean Expression
The Boolean expression of AND Gate is as,

X = A.B
Truth Table
A B X=A.B
0 0 0
0 1 0
1 0 0
1 1 1

External Diagram
A X=A.B
B
Internal diagram
Vc 13 12 11 10 9 8
c

1 2 3 4 5 6 G

Verification of AND Gate


1 1 1 1 0 0
Applications
 AND Gate is used as enable/inhibit device
 AND Gate is used as seat belt alarm system
 It is used in computers systems etc.

OR Gate
The OR function produces a HIGH output when one or more inputs are HIGH. When one
input is HIGH or the other input is HIGH or both inputs are HIGH, the output is HIGH. When
both inputs are LOW, the output is LOW. The OR function is implemented by a logic circuit
known as an OR gate

Boolean Expression
The Boolean expression for OR Gate is given as

X=A+B

Code
7432
Truth table
A B X=A+B
0 0 0
0 1 1
1 0 1
1 1 1
External Diagram
A X=A+B

Internal Diagram

You might also like