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

Full Adder Assignment

This document describes the procedure for building a full adder circuit using a breadboard, XOR, AND, and OR gates. It provides the truth table and boolean expressions for a full adder. A full adder handles three binary inputs (A, B, C) and produces two outputs, the sum (S) and carry (C). It differs from a half adder, which only handles two inputs (A, B) without a carry input.

Uploaded by

ramalkhan251
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)
62 views

Full Adder Assignment

This document describes the procedure for building a full adder circuit using a breadboard, XOR, AND, and OR gates. It provides the truth table and boolean expressions for a full adder. A full adder handles three binary inputs (A, B, C) and produces two outputs, the sum (S) and carry (C). It differs from a half adder, which only handles two inputs (A, B) without a carry input.

Uploaded by

ramalkhan251
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/ 2

Title: Title: FULL ADDER

Lab Worksheet #7

Name: Ramal Ejaz Semester: 2nd BSCS


Date of submission: 24-10-2023 sapid: 49236

Procedure:
 Take the breadboard and connect the whole breadboard by placing two wires one in
positive rail and other in negative rail.
 Take three ICs (XOR, AND, OR) and place it on the breadboard in sequence like first
XOR, then AND and in last OR..
 Connect the VCC pin to the positive rail and GND pin to negative of each ICs.
 Put 1st input in the XOR IC pin 1 and pass that input to the 1st input of AND gate, then put
2nd input of XOR IC pin 2 and pass it into the second input of AND gate. The output of
3rd pin of XOR pass into the 4 pin of XOR. Put 3rd input in the 5 pin of XOR and pass it
into the 5 pin of AND gate. The output of 3rd pin of XOR gate will be pass into the 4 pin
of AND IC. The output of 3rd pin of AND gate will pass into 2nd input of OR gate and the
output from 6 pin pass into 1st input of OR.
 The XOR and AND gate represent the Sum and OR gate represent the carry.
 The 6 output from XOR gate will be placed on breadboard to connect LED and resistors
and same for carry as output from pin 3 of OR gate will place on bread to connect led and
resistor.

TRUTH TABLE
A B C S C
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

Boolean expression of full adder:


F= A ⊕ B ⊕ C
S= C (A' B + A B')+AB
Question:
Differentiate between Full-Adder and Half-Adder in your own words.
A Half Adder consists of only one AND gate and XOR gate. A Full Adder consists of one OR
gate and XOR and AND gates. There are two inputs in a Half Adder- A and B. There are a total
of three inputs in a Full Adder A. B and C.

Logic Circuit:

Using NAND gates

Using XOR, AND, OR

You might also like