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

DIGITAL ELECTRONICS AND LOGIC DESIGNS

LAB FILE

SUBJECT NAME : DIGITAL ELECTRONICS AND LOGIC DESIGN LAB


SUBJECT CODE: EC106

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING


B.E-CSE 3RD SEM
GROUP NO: G13(A)

SUBMITTED BY: SUBMITTED TO:


NAME – ABHAY PRABHAKAR MS. VATSALA ANANDA
ROLL NO - 2010990014 ASSISTANT PROFESSOR, ECE DEPT.

CHITKARA UNIVERSITY
NH-7, CHANDIGARH-PATIALA NATIONAL HIGHWAYRAJPURA,
PUNJAB140401.

Department of Computer Science & Engineering, Chitkara University Institute of Engineering and
Technology, Chitkara University, Punjab
Web Site. www.chitkara.edu.in
DIGITAL ELECTRONICS AND LOGIC DESIGNS

EXPERIMENT NO. – 02

Aim: Mr. Vivek wants to add two numbers in computer, but computer only understands the binary
numbers i.e., 0&1. So, design a circuit that adds equivalent of two decimal numbers.

Apparatus Required: Logic Trainer kit, connecting wires, bread board, IC 7432,7404,7486,7400, 7408.

Half Adder:

Fig: 2.1 Half adder Schematic diagram

a) Logical Diagram:

b) Truth Table

Input Output
A B SUM CARRY
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1
DIGITAL ELECTRONICS AND LOGIC DESIGNS

c) Logical Expression: Sum: A ⊕ B Carry: A.B

Full Adder:

Figure: -2.3 Full Adders Schematic diagram

a) Logical Diagram:

b) Truth Table
Input Output
A B Cin Sum Cout
0 0 0 0 0
0 0 1 1 0
0 1 0 1 0
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1

c) Logical Expression: Sum: A ⊕ B ⊕ Cin Carry: A.B + Cin(A⊕B)


DIGITAL ELECTRONICS AND LOGIC DESIGNS

Half Adder Circuit On Multisim:

Link: https://www.multisim.com/api/v1/image/2514144/vcd3xc9qjqhziebju4hqce-pngthumbnailcircuit/HALF%20ADDER.png

Full Adder Circuit on Multisim:

Link: https://www.multisim.com/api/v1/image/2514220/mziub4moezm8hbewhxvynm-pngthumbnailcircuit/FULL%20ADDER.png

Conclusion: Adders can be used to sum binary numbers in digital circuits and their operation is shown
above. In Full adder we can further add a carry of previous operation.

You might also like