SlideShare une entreprise Scribd logo
1  sur  36
S.No. Contents
Page-
No
I
Introduction
II BOOLEAN
ALGEBRA
III Basic
Gates
IV OR
Gate
v AND
Gate
VI NOT
Gate
VII NOR
Gate
VII NAND
Gate
vIII EX-OR
Gate
IX EX-
NOR Gate
X experiment
In the modern world of electronics, the term Digital
is generally associated with a computer because the
term Digital is derived fromthe way computers
performoperation, by counting digits. For many years,
the application of digital electronics was only in the
computer system. Butnow-a-days, digitalelectronics is
used in many other applications
Signal
Signalcan be defined as a physical quantity, which
contains some information. It is a function of one or
more than one independent variables. Signals are of two
types.
 Analog Signal
 Digital Signal
Analog Signal
An analog signal is defined as the signal having
continuous values. Analog signal can have infinite
number of different values. In real world scenario, most
of the things observed in nature are analog. Examples
of the analog signals are following.
 Temperature
 Pressure
 Distance
KEY POINT
*Following are some of the
examples in which Digital
electronics is heavily
used.
 Industrial process
control
 Military system
 Television
 Communication
system
 Medical equipment
 Radar
 Navigation
 Sound
 Voltage
 Current & power
Graphical representation of Analog Signal
(Temperature)
The circuits that process the analog signals are called as analog circuits or system.
Examples of the analog system are following.
 Filter
 Amplifiers
 Television receiver
 Motor speed controller
Disadvantage of Analog Systems
 Less accuracy
 Less versatility
 More noise effect
 More distortion
 More effect of weather
Digital Signal
A digital signal is defined as the signal which has only a finite number of distinct
values. Digital signals are not continuous signals. In the digital electronic
calculator, the input is given with the help of switches. This input is converted into
electrical signal which have two discrete values or levels.
One of these may be called low level and another is called high level. The signal
will always be one of the two levels.
This type of signal is called digital signal. Examples of the digital signal are
following.
 Binary Signal
 Octal Signal
 Hexadecimal Signal
Graphical representation of the Digital Signal (Binary)
The circuits that process the digital
signals are called digital systems or
digital circuits. Examples of the digital
systems are following.
 Registers
 Flip-flop
 Counters
 Microprocessors
Number System &
Conversion
"A set of values used to represent
different quantitiesis known as Number
System". For example, a number system
can be used to represent the number of
students in a class or number of viewers
watching a certain TV program etc. The
digital computer represents all kinds of
data and information in binary numbers. It
includes audio, graphics, video, text and
numbers. The total number of digits used
in a number system is called its base or
radix. The base is written after the number
as subscript such as 51210.
Some important number systems are as
follows.
Advantage of Digital
Systems
 More accuracy
 More versatility
 Less distortion
 Easy communicate
 Possible storage of information
 Comparison of Analog
and Digital Signal
S.N. Analog Signal Digital Signal
1
Analog signal has
infinite values.
Digital signal
has a finite
number of
values.
2
Analog signal has a
continuous nature.
Digital signal
has a discrete
nature.
3
Analog signal is
generated by
transducers and
signal generators.
Digital signal is
generated by A
to D converter.
4
Example of analog
signal − sine wave,
triangular waves.
Example of
digital signal −
binary signal.
ADVANTAGE AND
COMPARISON
 Decimal number system
 Binary number system
 Octal number system
 Hexadecimal number system
The decimal number system is used in general. However, the computers use
binary number system. The octal and hexadecimal number systems are used in
the computer.
Decimal number System
The Decimal Number System consists of ten digits from 0 to 9. These digits can
be used to represent any numeric value. The base of decimal number system is
10. It is the most widely used number system. The value represented by
individual digit depends on weight and position of the digit.
Each number in this system consists of digits which are located at different
positions. The position of first digit towards left side of the decimal point is 0.
The position of second digit towards left side of the decimal point is 1. Similarly,
the position of first digit towards right side of decimal point is -1. The position
of second digit towards right side of decimal point is -2 and so on.
The value of the number is determined by multiplying the digits with the weight
of their position and adding the results. This method is known as expansion
method. The rightmost digit of number has the lowest weight. This digit is called
Least Significant Digit (LSD). The leftmost digit of a number has the highest
weight. This digit is called Most Significant Digit (MSD). The digit 7 in the number
724 is most significant digit and 4 is the least significant digit.
Example:
The weights and positions of each digit of the number 453 are as follows:
Position 2 1 0
Weights 102101 100
Face value4 5 3
The above table indicates that:
The value of digit 4 = 4x102 = 400
The value of digit 4 = 5x10 = 50
The value of digit 3 = 3x10 = 3
The actual number can be found by adding the values obtained by the digits as
follows:
400 + 50 + 3 =45310
Example:
The weights and positions of each digit of the number 139.78 are as follows.
Position 2 1 0 -1 -2
Weights 102101 100.10-1 10-2
Face Value1 3 9 7 8
The above table indicates that:
The value of digit 1 = 1x102 = 100
The value of digit 3 = 3x101 = 30
The value of digit 9 = 9x100 = 9
The value of digit 7 = 7x10-1 = 0.7
The value of digit 8 = 8x10-2 = 0.08
The actual number can be found by adding the values obtained by the digits as
follows:
100 + 30 + 9 + 0.7 + 0.8 = 139.78
Binary Number System
Digital computer represents all kinds of data and information in the binary
system. Binary Number System consists of two digits 0 and 1. Its base is 2. Each
digit or bit in binary number system can be 0 or 1. A combination of binary
numbers may be used to represent different quantities like 1001.
The positional value of each digit in binary number is twice the place value or
face value of the digit of its right side. The weight of each position is a power of
2.The place value of the digits according to position and weight is as follows:
Position3 2 1 0
Weights23 222120
Example: Convert 101112 decimal number
Position 2 1 0 -1 -2
Weights 102101 10010-1 10-2
Face Value1 3 9 7 8
101112 = 1 x 24 + 0 x 23 + 1 x 22 + 1 x 21 + 1 x 20
= 1 x 16 + 0 + 1 x 4 + 1 x 2 + 1 x 1
= 16 + 0 + 4 2 + 1
= 2310
Example: Convert 101.1012
Position 2 1 0 -1 -2 -3
Face Value1 0 1 .1 0 1
Weight 242120 2-12-2 2-3
101.1012 = 1 x 22 + 0x21 + 1 x 20 + 1x 2-1 + 0 x 2-2 + 1
x 2-3
= 1 x 4 + 0 + 1 x 1 + ½ + 0 + 1/8
= 4 + 0 + 1 + 0.5 + 0.125
= 5.62510
Decimal to Binary conversion
The following technique, called the (Division – Remainder Technique) is easiest &
simple method used to convert decimal to binary numbers.
Step – 1
Divide the decimal number to be converted by the value of the new base. In this
case divide it by 2.
Step – 2
Record the remainder from Step – 1 as the rightmost digit.
Step – 3
Divide the quotient of the previous by the new base.
Step – 4
Record the remainder from Step – 3 as the next digit (to the left) of the new base
number.
Step – 5
Bottom to top sequence of remainder will be the required converted number.
Repeat Step – 3 & Step – 4, recording remainders from right to left, until the
quotient becomes less than the digit of new base so that it cannot be divided.
All these steps are performed in the following picture for converting decimal
numbers to binary. Isn't that simple & easy.
Binary system complements
As the binary system has base r = 2. So the two types of complements for the binary system are
2's complement and 1's complement.
1's complement
The 1's complement of a number is found by changing all 1's to 0's and all 0's to 1's. This is
called as taking complement or 1's complement. Example of 1's Complement is as follows.
2's complement
The 2's complement of binary number is obtained by adding 1 to
the Least Significant Bit (LSB) of 1's complement of the number.
2's complement = 1's complement + 1
Example of 2's Complement is as follows.
Boolean algebra
Boolean algebra is used to analyze and simplify the digital (logic)
circuits. It uses only the binary numbers i.e. 0 and 1. It is also
called as Binary Algebra or logical Algebra. Boolean algebra
was invented by George Boole in 1854.
Rule in Boolean Algebra
Following are the important rules used in Boolean algebra.
 Variable used can have only two values. Binary 1 for HIGH and Binary 0 for LOW.
TOPICES-
-Rules in Boolean
algebra.
- Boolean Algebra
law.
1. Commutative
law
1.1- Associative
law
1.2- Distributive
law
1.3- AND law
1.4-OR law
2. INVERSION
law
3. Theorems &
 Complement of a variable is represented by an over bar (-). Thus, complement of variable
B is represented as . Thus if B = 0 then = 1 and B = 1 then = 0.
 O Ring of the variables is represented by a plus (+) sign between them. For example O
Ring of A, B, C is represented as A + B + C.
 Logical AND of the two or more variable is represented by writing a dot between them
such as A.B.C. Sometime the dot may be omitted like ABC.
Boolean Laws
There are six types of Boolean Laws.
Commutative law
Any binary operation which satisfies the following expression is referred to as commutative
operation.
Commutative law states that changing the sequence of the variables does not have any effect on
the output of a logic circuit.
Associative law
This law states that the order in which the logic operations are performed is irrelevant as their
effect is the same.
Distributive law
Distributive law states the following condition.
AND law
These laws use the AND operation. Therefore they are called as AND laws.
OR law
These laws use the OR operation. Therefore they are called as OR laws.
INVERSION law
This law uses the NOT operation. The inversion law states that double inversion of a variable
results in the original variable itself.
Important Boolean Theorems
Following are few important boolean Theorems.
Boolean function/theorems Description
Boolean Functions BooleanFunctionsandExpressions,K-MapandNANDGates
realization
De Morgan's Theorems De Morgan's Theorem1 and Theorem2
Boolean function:-
Boolean algebra deals with binary variables and logic operation. A Boolean
Function is described by an algebraic expression called Boolean expression
which consists of binary variables, the constants 0 and 1, and the logic operation
symbols. Consider the following example.
Here the left side of the equation represents the output Y. So we can state equation
no. 1
Truth Table Formation
A truth table represents a table having all combinations
of inputs and their corresponding result.
It is possible to convert the switching equation into a
truth table. For example, consider the following switching
equation.
The output will be high (1) if A = 1 or BC = 1 or both are 1. The truth
table for this equation is shown in Table (a). The number of rows in the
truth table is 2n where n is the number of input variables (n=3 for the given
equation). Hence there are 23 = 8 possibleinput combination of inputs.
Truth Table Formation
A truth table represents a table having all combinations of inputs and their
corresponding result.
It is possible to convert the switching equation into a truth table. For
example, consider the following switching equation.
The output will be high (1) if A = 1 or BC = 1 or both are 1. The truth table
for this equation is shown in Table (a). The number of rows in the truth table
is 2n where n is the number of input variables (n=3 for the given equation).
Hence there are 23 = 8 possible input combination of inputs.
Methods to Simplify a Boolean Function
The methods used for simplifying a Boolean function are as follows:
-map or K-map, and
Karnaugh-map or K-map
The Boolean theorems and the De-Morgan's theorems are useful in manipulating
the logic expression. We can realize the logical expression using gates. The number
of logic gates required for the realization of a logical expression should be reduced
to a minimum possible value by K-map method. This method can be done in two
different ways, as discussed below.
Sum of Products (SOP) Form
It is in the form of sum of three terms AB, AC, BC with each individual term is a
product of two variables. Say A.B or A.C etc. Therefore such expressions are known
as expression in SOP form. The sum and products in SOP form are not the actual
additions or multiplications. In fact they are the OR and AND functions. In SOP
form, 0 represents a bar and 1 represents an unbar. SOP form is represented by .
Given below is an example of SOP.
Product of Sums (POS) Form
It is in the form of product of three terms (A+B), (B+C), or (A+C) with each term is
in the form of a sum of two variables. Such expressions are said to be in the
product of sums (POS) form. In POS form, 0 represents an unbar and 1 represents
a bar. POS form is represented by .
]
Given below is an example of POS.
Logic gates are the basic building blocks of any digital system. It is an electronic
circuit having one or more than one input and only one output. The relationship
between the input and the output is based on a certainlogic. Based on this, logic
gates are named as AND gate, OR gate, NOT gate etc.
DE MORGAN'S
THEOREMS
De Morgan has suggestedtwotheoremswhichare extremelyusefulinBooleanAlgebra.The two
theoremsare discussedbelow.
Theorem 1

The left hand side (LHS) of this theorem represents a NAND gate with inputs A
and B, whereas the right hand side (RHS) of the theorem represents an OR gate
with inverted inputs.
Bubbled OR.
Table showingverificationof the De Morgan's firsttheorem:
Theorem 2

The LHS of this theorem represents a NOR gate with inputs A and B, whereas the
RHS represents an AND gate with inverted inputs.
Bubbled AND.
Table showingverificationof the De Morgan's secondtheorem:
Basic
Gates
AND Gate
A circuit which performs an AND operation is shown in figure. It has n input (n >= 2) and one
output.
Logic diagram
Truth Table
OR Gate
A circuit which performs an OR operation is shown in figure. It has n input (n >= 2) and one
output.
Logic diagram
Truth Table
NOT Gate
NOT gate is also known as Inverter. It has one input A and one output Y.
Logic diagram
Truth Table
NAND Gate: -
A NOT-AND operation is known as NAND operation. It has n input (n >= 2) and one output.
Logic diagram
Truth Table
NOR Gate
A NOT-ORoperation is known as NOR operation. It has n input (n >= 2) and one output.
Logic diagram
Truth Table
XOR Gate
XOR or Ex-OR gate is a special type of gate. It can be used in the half adder, full adder and
subtract or. The exclusive-OR gate is abbreviated as EX-OR gate or sometime as X-OR gate. It
has n input (n >= 2) and one output.
Logic diagram
Truth Table
XNOR Gate
XNOR gate is a special type of gate. It can be used in the half adder, full adder and subtract or.
The exclusive-NOR gate is abbreviated as EX-NOR gate or sometime as X-NOR gate. It has n
input (n >= 2) and one output.
Logic diagram
Truth Table
AIM
To find truth table & Boolean
expression from given Diagram of
given Boolean expression.
GIVEN -
Boolean expression:
Y =
[(A.B)+B’].A
TRUTH TABLE:
OUTPUT:
A B B A.B (A.B)+B Y=
[(A.B+B)].A
0 0 1 0 1 0
0 1 0 0 0 0
1 0 1 0 1 1
1 1 0 1 1 1
Fig-1
I/P IP1 IP2 O/P
- L H L
I/P TP1 TP2 0/P
+ H H H
+ L H
- H L
I/P IP1 IP2 O/P
+ L H H
- H H
I/P IP1 IP2 O/P
- L L L
+ L L

Contenu connexe

Tendances

FARADAY LAW OF ELECTROMAGNETIC INDUCTION CLASS 12 PROJECT
FARADAY LAW OF ELECTROMAGNETIC INDUCTION CLASS 12 PROJECTFARADAY LAW OF ELECTROMAGNETIC INDUCTION CLASS 12 PROJECT
FARADAY LAW OF ELECTROMAGNETIC INDUCTION CLASS 12 PROJECTAjay Kumar
 
Physics project on logic gate
Physics project on logic gatePhysics project on logic gate
Physics project on logic gateVirat Prasad
 
Logic gates 12th standard ivestigatory project
Logic gates 12th standard ivestigatory projectLogic gates 12th standard ivestigatory project
Logic gates 12th standard ivestigatory projectJaipuriar School
 
Logic Gates Class 12
Logic Gates Class 12Logic Gates Class 12
Logic Gates Class 12RithuJ
 
physics investigatory project for class 12th students
 physics investigatory project for class 12th students physics investigatory project for class 12th students
physics investigatory project for class 12th studentsGaurav Jha
 
Chemistry investigatory project
Chemistry investigatory projectChemistry investigatory project
Chemistry investigatory projectAbhinav Kumar
 
Logic gate class 12
Logic gate class 12Logic gate class 12
Logic gate class 12Nipun Shah
 
CBSE Class XII Physics Investigatory Project
CBSE Class XII Physics Investigatory ProjectCBSE Class XII Physics Investigatory Project
CBSE Class XII Physics Investigatory ProjectVaibhav Kandwal
 
chemistry investigatory project on food adulteration
chemistry investigatory project on food adulterationchemistry investigatory project on food adulteration
chemistry investigatory project on food adulterationappietech
 
Physics investigatgory project on logic gates class 12
Physics  investigatgory project on logic gates class 12Physics  investigatgory project on logic gates class 12
Physics investigatgory project on logic gates class 12appietech
 
Physics investigatory project
Physics investigatory projectPhysics investigatory project
Physics investigatory projectAbhinav Kumar
 
203979153 investigatory-project-on-ldr (1)
203979153 investigatory-project-on-ldr (1)203979153 investigatory-project-on-ldr (1)
203979153 investigatory-project-on-ldr (1)Chiranjeet Samantaray
 
Physics investigatory project
Physics investigatory projectPhysics investigatory project
Physics investigatory projectPrakhar Seth
 
Chemistry investigatory project
Chemistry investigatory projectChemistry investigatory project
Chemistry investigatory projectAlokBind1
 
Chemistry project on casein in mik
Chemistry project on casein in mikChemistry project on casein in mik
Chemistry project on casein in mikVirat Prasad
 
To compare rate of fermention of give sample
To compare rate of fermention of give sampleTo compare rate of fermention of give sample
To compare rate of fermention of give sampleRajsomvanshi
 

Tendances (20)

FARADAY LAW OF ELECTROMAGNETIC INDUCTION CLASS 12 PROJECT
FARADAY LAW OF ELECTROMAGNETIC INDUCTION CLASS 12 PROJECTFARADAY LAW OF ELECTROMAGNETIC INDUCTION CLASS 12 PROJECT
FARADAY LAW OF ELECTROMAGNETIC INDUCTION CLASS 12 PROJECT
 
Physics project on logic gate
Physics project on logic gatePhysics project on logic gate
Physics project on logic gate
 
Logic gates 12th standard ivestigatory project
Logic gates 12th standard ivestigatory projectLogic gates 12th standard ivestigatory project
Logic gates 12th standard ivestigatory project
 
Logic Gates Class 12
Logic Gates Class 12Logic Gates Class 12
Logic Gates Class 12
 
physics investigatory project for class 12th students
 physics investigatory project for class 12th students physics investigatory project for class 12th students
physics investigatory project for class 12th students
 
Chemistry investigatory project
Chemistry investigatory projectChemistry investigatory project
Chemistry investigatory project
 
CBSE CLASS 12 PHYSICS PROJECT
CBSE CLASS 12 PHYSICS PROJECTCBSE CLASS 12 PHYSICS PROJECT
CBSE CLASS 12 PHYSICS PROJECT
 
Logic gate class 12
Logic gate class 12Logic gate class 12
Logic gate class 12
 
Wheatstone Bridge
Wheatstone BridgeWheatstone Bridge
Wheatstone Bridge
 
CBSE Class XII Physics Investigatory Project
CBSE Class XII Physics Investigatory ProjectCBSE Class XII Physics Investigatory Project
CBSE Class XII Physics Investigatory Project
 
chemistry investigatory project on food adulteration
chemistry investigatory project on food adulterationchemistry investigatory project on food adulteration
chemistry investigatory project on food adulteration
 
Physics investigatgory project on logic gates class 12
Physics  investigatgory project on logic gates class 12Physics  investigatgory project on logic gates class 12
Physics investigatgory project on logic gates class 12
 
Physics investigatory project
Physics investigatory projectPhysics investigatory project
Physics investigatory project
 
203979153 investigatory-project-on-ldr (1)
203979153 investigatory-project-on-ldr (1)203979153 investigatory-project-on-ldr (1)
203979153 investigatory-project-on-ldr (1)
 
Physics investigatory project
Physics investigatory projectPhysics investigatory project
Physics investigatory project
 
Physics investigatory project
Physics investigatory projectPhysics investigatory project
Physics investigatory project
 
Chemistry investigatory project
Chemistry investigatory projectChemistry investigatory project
Chemistry investigatory project
 
Chemistry project on casein in mik
Chemistry project on casein in mikChemistry project on casein in mik
Chemistry project on casein in mik
 
To compare rate of fermention of give sample
To compare rate of fermention of give sampleTo compare rate of fermention of give sample
To compare rate of fermention of give sample
 
CHEMISTRY IPR 2022-23.pdf
CHEMISTRY IPR 2022-23.pdfCHEMISTRY IPR 2022-23.pdf
CHEMISTRY IPR 2022-23.pdf
 

En vedette

Digital Electronics Logic gates
Digital Electronics Logic gatesDigital Electronics Logic gates
Digital Electronics Logic gatesMD Mahadi Hasan
 
Copy Of Determination Of The Contents Of Cold Drinks
Copy Of Determination Of The Contents Of Cold DrinksCopy Of Determination Of The Contents Of Cold Drinks
Copy Of Determination Of The Contents Of Cold DrinksHimanshu Sagar
 
chemistry investigatory project class 12
chemistry investigatory project class 12chemistry investigatory project class 12
chemistry investigatory project class 12Roshan Bastia
 
chemistry investigatory-Amount of caffeine present in tea samples
chemistry investigatory-Amount of caffeine present in tea sampleschemistry investigatory-Amount of caffeine present in tea samples
chemistry investigatory-Amount of caffeine present in tea samplesRohith Ak
 
Preparation of potash alum from aluminium scrap
Preparation of potash alum from aluminium scrapPreparation of potash alum from aluminium scrap
Preparation of potash alum from aluminium scrapSwaroop Puhan
 
47363797 chemistry-project-on-soft-drink
47363797 chemistry-project-on-soft-drink47363797 chemistry-project-on-soft-drink
47363797 chemistry-project-on-soft-drinkPrateek Dhokwal
 
Sexual reproduction flowering plants_PUC_II
Sexual reproduction flowering plants_PUC_IISexual reproduction flowering plants_PUC_II
Sexual reproduction flowering plants_PUC_IIManisha Chhatre
 
Chemistry Investigatory Project Class 12
Chemistry Investigatory Project Class 12Chemistry Investigatory Project Class 12
Chemistry Investigatory Project Class 12Rushil Aggarwal
 
Chemistry Investigatory project on "Study of constituents of an alloy"
Chemistry Investigatory project on "Study of constituents of an alloy"Chemistry Investigatory project on "Study of constituents of an alloy"
Chemistry Investigatory project on "Study of constituents of an alloy"Swaroop Somanna
 
Biology investigatory project on mitiosis
Biology investigatory project on mitiosisBiology investigatory project on mitiosis
Biology investigatory project on mitiosisPradeep Singh
 
Chemistry Investigatory Project on COLD DRINKS
Chemistry Investigatory Project on COLD DRINKSChemistry Investigatory Project on COLD DRINKS
Chemistry Investigatory Project on COLD DRINKSNaveen R
 
Soft drinks
Soft drinksSoft drinks
Soft drinksmadhula
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMZaheer Abbasi
 
Report on-the-logic-gates
Report on-the-logic-gatesReport on-the-logic-gates
Report on-the-logic-gatesbhardubhai
 
Chemistry project for Class 12
Chemistry project for Class 12Chemistry project for Class 12
Chemistry project for Class 12Shahban Ali
 

En vedette (20)

Digital Electronics Logic gates
Digital Electronics Logic gatesDigital Electronics Logic gates
Digital Electronics Logic gates
 
Basic Logic Gates
Basic Logic GatesBasic Logic Gates
Basic Logic Gates
 
Biomimicry
BiomimicryBiomimicry
Biomimicry
 
Copy Of Determination Of The Contents Of Cold Drinks
Copy Of Determination Of The Contents Of Cold DrinksCopy Of Determination Of The Contents Of Cold Drinks
Copy Of Determination Of The Contents Of Cold Drinks
 
chemistry investigatory project class 12
chemistry investigatory project class 12chemistry investigatory project class 12
chemistry investigatory project class 12
 
TANNIC ACID IN TEA
TANNIC ACID IN TEATANNIC ACID IN TEA
TANNIC ACID IN TEA
 
Tea chemistry
Tea chemistryTea chemistry
Tea chemistry
 
chemistry investigatory-Amount of caffeine present in tea samples
chemistry investigatory-Amount of caffeine present in tea sampleschemistry investigatory-Amount of caffeine present in tea samples
chemistry investigatory-Amount of caffeine present in tea samples
 
Preparation of potash alum from aluminium scrap
Preparation of potash alum from aluminium scrapPreparation of potash alum from aluminium scrap
Preparation of potash alum from aluminium scrap
 
47363797 chemistry-project-on-soft-drink
47363797 chemistry-project-on-soft-drink47363797 chemistry-project-on-soft-drink
47363797 chemistry-project-on-soft-drink
 
Sexual reproduction flowering plants_PUC_II
Sexual reproduction flowering plants_PUC_IISexual reproduction flowering plants_PUC_II
Sexual reproduction flowering plants_PUC_II
 
Chemistry Investigatory Project Class 12
Chemistry Investigatory Project Class 12Chemistry Investigatory Project Class 12
Chemistry Investigatory Project Class 12
 
Chemistry Investigatory project on "Study of constituents of an alloy"
Chemistry Investigatory project on "Study of constituents of an alloy"Chemistry Investigatory project on "Study of constituents of an alloy"
Chemistry Investigatory project on "Study of constituents of an alloy"
 
Biology investigatory project on mitiosis
Biology investigatory project on mitiosisBiology investigatory project on mitiosis
Biology investigatory project on mitiosis
 
Chemistry Investigatory Project on COLD DRINKS
Chemistry Investigatory Project on COLD DRINKSChemistry Investigatory Project on COLD DRINKS
Chemistry Investigatory Project on COLD DRINKS
 
Soft drinks
Soft drinksSoft drinks
Soft drinks
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEM
 
Report on-the-logic-gates
Report on-the-logic-gatesReport on-the-logic-gates
Report on-the-logic-gates
 
Number system
Number systemNumber system
Number system
 
Chemistry project for Class 12
Chemistry project for Class 12Chemistry project for Class 12
Chemistry project for Class 12
 

Similaire à Physics investigatory project for class 12 logic gates

Data repersentation.
Data repersentation.Data repersentation.
Data repersentation.Ritesh Saini
 
Chapter 1 number and code system sss
Chapter 1 number and code system sssChapter 1 number and code system sss
Chapter 1 number and code system sssBaia Salihin
 
Digital electronics & microprocessor Batu- s y computer engineering- arvind p...
Digital electronics & microprocessor Batu- s y computer engineering- arvind p...Digital electronics & microprocessor Batu- s y computer engineering- arvind p...
Digital electronics & microprocessor Batu- s y computer engineering- arvind p...ARVIND PANDE
 
Dee 2034 chapter 1 number and code system (Baia)
Dee 2034 chapter 1 number and code system (Baia)Dee 2034 chapter 1 number and code system (Baia)
Dee 2034 chapter 1 number and code system (Baia)SITI SABARIAH SALIHIN
 
Computer arithmetic operations.pptx
Computer arithmetic operations.pptxComputer arithmetic operations.pptx
Computer arithmetic operations.pptxssusera6fdd5
 
Digital Electronics Notes
Digital Electronics NotesDigital Electronics Notes
Digital Electronics NotesMathankumar S
 
Computer Oraganizaation.pptx
Computer Oraganizaation.pptxComputer Oraganizaation.pptx
Computer Oraganizaation.pptxbmangesh
 
Ee 202 chapter 1 number and code system
Ee 202 chapter 1 number and code system Ee 202 chapter 1 number and code system
Ee 202 chapter 1 number and code system CT Sabariah Salihin
 
chapter one && two.pdf
chapter one && two.pdfchapter one && two.pdf
chapter one && two.pdfmiftah88
 
Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1Deepak John
 
Digital Electronics Notes
Digital Electronics Notes Digital Electronics Notes
Digital Electronics Notes Srikrishna Thota
 
Number Systems.ppt
Number Systems.pptNumber Systems.ppt
Number Systems.pptzorogoh2
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...Arti Parab Academics
 

Similaire à Physics investigatory project for class 12 logic gates (20)

Data repersentation.
Data repersentation.Data repersentation.
Data repersentation.
 
chap1.pdf
chap1.pdfchap1.pdf
chap1.pdf
 
chap1.pdf
chap1.pdfchap1.pdf
chap1.pdf
 
chap1.pdf
chap1.pdfchap1.pdf
chap1.pdf
 
UNIT 1 (1).pptx
UNIT 1 (1).pptxUNIT 1 (1).pptx
UNIT 1 (1).pptx
 
Digital Electronics
Digital ElectronicsDigital Electronics
Digital Electronics
 
Chapter 1 number and code system sss
Chapter 1 number and code system sssChapter 1 number and code system sss
Chapter 1 number and code system sss
 
Digital electronics & microprocessor Batu- s y computer engineering- arvind p...
Digital electronics & microprocessor Batu- s y computer engineering- arvind p...Digital electronics & microprocessor Batu- s y computer engineering- arvind p...
Digital electronics & microprocessor Batu- s y computer engineering- arvind p...
 
Dee 2034 chapter 1 number and code system (Baia)
Dee 2034 chapter 1 number and code system (Baia)Dee 2034 chapter 1 number and code system (Baia)
Dee 2034 chapter 1 number and code system (Baia)
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
 
Computer arithmetic operations.pptx
Computer arithmetic operations.pptxComputer arithmetic operations.pptx
Computer arithmetic operations.pptx
 
Digital Electronics Notes
Digital Electronics NotesDigital Electronics Notes
Digital Electronics Notes
 
Computer Oraganizaation.pptx
Computer Oraganizaation.pptxComputer Oraganizaation.pptx
Computer Oraganizaation.pptx
 
Ee 202 chapter 1 number and code system
Ee 202 chapter 1 number and code system Ee 202 chapter 1 number and code system
Ee 202 chapter 1 number and code system
 
Number system
Number systemNumber system
Number system
 
chapter one && two.pdf
chapter one && two.pdfchapter one && two.pdf
chapter one && two.pdf
 
Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1
 
Digital Electronics Notes
Digital Electronics Notes Digital Electronics Notes
Digital Electronics Notes
 
Number Systems.ppt
Number Systems.pptNumber Systems.ppt
Number Systems.ppt
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
 

Dernier

Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
Book Sex Workers Available Pune Call Girls Yerwada 6297143586 Call Hot India...
Book Sex Workers Available Pune Call Girls Yerwada  6297143586 Call Hot India...Book Sex Workers Available Pune Call Girls Yerwada  6297143586 Call Hot India...
Book Sex Workers Available Pune Call Girls Yerwada 6297143586 Call Hot India...Call Girls in Nagpur High Profile
 
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men 🔝Deoghar🔝 Escorts...
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men  🔝Deoghar🔝   Escorts...➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men  🔝Deoghar🔝   Escorts...
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men 🔝Deoghar🔝 Escorts...amitlee9823
 
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...gajnagarg
 
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...MOHANI PANDEY
 
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...amitlee9823
 
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
Call Girls in Vashi Escorts Services - 7738631006
Call Girls in Vashi Escorts Services - 7738631006Call Girls in Vashi Escorts Services - 7738631006
Call Girls in Vashi Escorts Services - 7738631006Pooja Nehwal
 
SM-N975F esquematico completo - reparación.pdf
SM-N975F esquematico completo - reparación.pdfSM-N975F esquematico completo - reparación.pdf
SM-N975F esquematico completo - reparación.pdfStefanoBiamonte1
 
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night StandCall Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...amitlee9823
 
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制uodye
 
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7shivanni mehta
 
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...SUHANI PANDEY
 
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort GirlsDeira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort GirlsEscorts Call Girls
 
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Call Girls in Nagpur High Profile
 

Dernier (20)

CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Book Sex Workers Available Pune Call Girls Yerwada 6297143586 Call Hot India...
Book Sex Workers Available Pune Call Girls Yerwada  6297143586 Call Hot India...Book Sex Workers Available Pune Call Girls Yerwada  6297143586 Call Hot India...
Book Sex Workers Available Pune Call Girls Yerwada 6297143586 Call Hot India...
 
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men 🔝Deoghar🔝 Escorts...
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men  🔝Deoghar🔝   Escorts...➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men  🔝Deoghar🔝   Escorts...
➥🔝 7737669865 🔝▻ Deoghar Call-girls in Women Seeking Men 🔝Deoghar🔝 Escorts...
 
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
 
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
 
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
 
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Call Girls in Vashi Escorts Services - 7738631006
Call Girls in Vashi Escorts Services - 7738631006Call Girls in Vashi Escorts Services - 7738631006
Call Girls in Vashi Escorts Services - 7738631006
 
SM-N975F esquematico completo - reparación.pdf
SM-N975F esquematico completo - reparación.pdfSM-N975F esquematico completo - reparación.pdf
SM-N975F esquematico completo - reparación.pdf
 
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night StandCall Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In RT Nagar ☎ 7737669865 🥵 Book Your One night Stand
 
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...
 
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
 
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
 
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
 
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort GirlsDeira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
 
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
 

Physics investigatory project for class 12 logic gates

  • 2. VI NOT Gate VII NOR Gate VII NAND Gate vIII EX-OR Gate IX EX- NOR Gate X experiment
  • 3. In the modern world of electronics, the term Digital is generally associated with a computer because the term Digital is derived fromthe way computers performoperation, by counting digits. For many years, the application of digital electronics was only in the computer system. Butnow-a-days, digitalelectronics is used in many other applications Signal Signalcan be defined as a physical quantity, which contains some information. It is a function of one or more than one independent variables. Signals are of two types.  Analog Signal  Digital Signal Analog Signal An analog signal is defined as the signal having continuous values. Analog signal can have infinite number of different values. In real world scenario, most of the things observed in nature are analog. Examples of the analog signals are following.  Temperature  Pressure  Distance KEY POINT *Following are some of the examples in which Digital electronics is heavily used.  Industrial process control  Military system  Television  Communication system  Medical equipment  Radar  Navigation
  • 4.  Sound  Voltage  Current & power Graphical representation of Analog Signal (Temperature) The circuits that process the analog signals are called as analog circuits or system. Examples of the analog system are following.  Filter  Amplifiers  Television receiver  Motor speed controller Disadvantage of Analog Systems  Less accuracy  Less versatility  More noise effect  More distortion  More effect of weather
  • 5. Digital Signal A digital signal is defined as the signal which has only a finite number of distinct values. Digital signals are not continuous signals. In the digital electronic calculator, the input is given with the help of switches. This input is converted into electrical signal which have two discrete values or levels. One of these may be called low level and another is called high level. The signal will always be one of the two levels. This type of signal is called digital signal. Examples of the digital signal are following.  Binary Signal  Octal Signal  Hexadecimal Signal Graphical representation of the Digital Signal (Binary)
  • 6. The circuits that process the digital signals are called digital systems or digital circuits. Examples of the digital systems are following.  Registers  Flip-flop  Counters  Microprocessors Number System & Conversion "A set of values used to represent different quantitiesis known as Number System". For example, a number system can be used to represent the number of students in a class or number of viewers watching a certain TV program etc. The digital computer represents all kinds of data and information in binary numbers. It includes audio, graphics, video, text and numbers. The total number of digits used in a number system is called its base or radix. The base is written after the number as subscript such as 51210. Some important number systems are as follows. Advantage of Digital Systems  More accuracy  More versatility  Less distortion  Easy communicate  Possible storage of information  Comparison of Analog and Digital Signal S.N. Analog Signal Digital Signal 1 Analog signal has infinite values. Digital signal has a finite number of values. 2 Analog signal has a continuous nature. Digital signal has a discrete nature. 3 Analog signal is generated by transducers and signal generators. Digital signal is generated by A to D converter. 4 Example of analog signal − sine wave, triangular waves. Example of digital signal − binary signal. ADVANTAGE AND COMPARISON
  • 7.  Decimal number system  Binary number system  Octal number system  Hexadecimal number system The decimal number system is used in general. However, the computers use binary number system. The octal and hexadecimal number systems are used in the computer. Decimal number System The Decimal Number System consists of ten digits from 0 to 9. These digits can be used to represent any numeric value. The base of decimal number system is 10. It is the most widely used number system. The value represented by individual digit depends on weight and position of the digit. Each number in this system consists of digits which are located at different positions. The position of first digit towards left side of the decimal point is 0. The position of second digit towards left side of the decimal point is 1. Similarly, the position of first digit towards right side of decimal point is -1. The position of second digit towards right side of decimal point is -2 and so on. The value of the number is determined by multiplying the digits with the weight of their position and adding the results. This method is known as expansion method. The rightmost digit of number has the lowest weight. This digit is called Least Significant Digit (LSD). The leftmost digit of a number has the highest
  • 8. weight. This digit is called Most Significant Digit (MSD). The digit 7 in the number 724 is most significant digit and 4 is the least significant digit. Example: The weights and positions of each digit of the number 453 are as follows: Position 2 1 0 Weights 102101 100 Face value4 5 3 The above table indicates that: The value of digit 4 = 4x102 = 400 The value of digit 4 = 5x10 = 50 The value of digit 3 = 3x10 = 3 The actual number can be found by adding the values obtained by the digits as follows: 400 + 50 + 3 =45310 Example: The weights and positions of each digit of the number 139.78 are as follows. Position 2 1 0 -1 -2 Weights 102101 100.10-1 10-2 Face Value1 3 9 7 8 The above table indicates that: The value of digit 1 = 1x102 = 100 The value of digit 3 = 3x101 = 30
  • 9. The value of digit 9 = 9x100 = 9 The value of digit 7 = 7x10-1 = 0.7 The value of digit 8 = 8x10-2 = 0.08 The actual number can be found by adding the values obtained by the digits as follows: 100 + 30 + 9 + 0.7 + 0.8 = 139.78 Binary Number System Digital computer represents all kinds of data and information in the binary system. Binary Number System consists of two digits 0 and 1. Its base is 2. Each digit or bit in binary number system can be 0 or 1. A combination of binary numbers may be used to represent different quantities like 1001. The positional value of each digit in binary number is twice the place value or face value of the digit of its right side. The weight of each position is a power of 2.The place value of the digits according to position and weight is as follows: Position3 2 1 0 Weights23 222120 Example: Convert 101112 decimal number Position 2 1 0 -1 -2 Weights 102101 10010-1 10-2 Face Value1 3 9 7 8 101112 = 1 x 24 + 0 x 23 + 1 x 22 + 1 x 21 + 1 x 20 = 1 x 16 + 0 + 1 x 4 + 1 x 2 + 1 x 1
  • 10. = 16 + 0 + 4 2 + 1 = 2310 Example: Convert 101.1012 Position 2 1 0 -1 -2 -3 Face Value1 0 1 .1 0 1 Weight 242120 2-12-2 2-3 101.1012 = 1 x 22 + 0x21 + 1 x 20 + 1x 2-1 + 0 x 2-2 + 1 x 2-3 = 1 x 4 + 0 + 1 x 1 + ½ + 0 + 1/8 = 4 + 0 + 1 + 0.5 + 0.125 = 5.62510 Decimal to Binary conversion The following technique, called the (Division – Remainder Technique) is easiest & simple method used to convert decimal to binary numbers. Step – 1 Divide the decimal number to be converted by the value of the new base. In this case divide it by 2. Step – 2 Record the remainder from Step – 1 as the rightmost digit. Step – 3 Divide the quotient of the previous by the new base. Step – 4
  • 11. Record the remainder from Step – 3 as the next digit (to the left) of the new base number. Step – 5 Bottom to top sequence of remainder will be the required converted number. Repeat Step – 3 & Step – 4, recording remainders from right to left, until the quotient becomes less than the digit of new base so that it cannot be divided. All these steps are performed in the following picture for converting decimal numbers to binary. Isn't that simple & easy.
  • 12. Binary system complements As the binary system has base r = 2. So the two types of complements for the binary system are 2's complement and 1's complement. 1's complement The 1's complement of a number is found by changing all 1's to 0's and all 0's to 1's. This is called as taking complement or 1's complement. Example of 1's Complement is as follows.
  • 13. 2's complement The 2's complement of binary number is obtained by adding 1 to the Least Significant Bit (LSB) of 1's complement of the number. 2's complement = 1's complement + 1 Example of 2's Complement is as follows. Boolean algebra Boolean algebra is used to analyze and simplify the digital (logic) circuits. It uses only the binary numbers i.e. 0 and 1. It is also called as Binary Algebra or logical Algebra. Boolean algebra was invented by George Boole in 1854. Rule in Boolean Algebra Following are the important rules used in Boolean algebra.  Variable used can have only two values. Binary 1 for HIGH and Binary 0 for LOW. TOPICES- -Rules in Boolean algebra. - Boolean Algebra law. 1. Commutative law 1.1- Associative law 1.2- Distributive law 1.3- AND law 1.4-OR law 2. INVERSION law 3. Theorems &
  • 14.  Complement of a variable is represented by an over bar (-). Thus, complement of variable B is represented as . Thus if B = 0 then = 1 and B = 1 then = 0.  O Ring of the variables is represented by a plus (+) sign between them. For example O Ring of A, B, C is represented as A + B + C.  Logical AND of the two or more variable is represented by writing a dot between them such as A.B.C. Sometime the dot may be omitted like ABC. Boolean Laws There are six types of Boolean Laws. Commutative law Any binary operation which satisfies the following expression is referred to as commutative operation. Commutative law states that changing the sequence of the variables does not have any effect on the output of a logic circuit. Associative law This law states that the order in which the logic operations are performed is irrelevant as their effect is the same. Distributive law Distributive law states the following condition. AND law
  • 15. These laws use the AND operation. Therefore they are called as AND laws. OR law These laws use the OR operation. Therefore they are called as OR laws. INVERSION law This law uses the NOT operation. The inversion law states that double inversion of a variable results in the original variable itself. Important Boolean Theorems Following are few important boolean Theorems. Boolean function/theorems Description Boolean Functions BooleanFunctionsandExpressions,K-MapandNANDGates realization De Morgan's Theorems De Morgan's Theorem1 and Theorem2 Boolean function:-
  • 16. Boolean algebra deals with binary variables and logic operation. A Boolean Function is described by an algebraic expression called Boolean expression which consists of binary variables, the constants 0 and 1, and the logic operation symbols. Consider the following example. Here the left side of the equation represents the output Y. So we can state equation no. 1 Truth Table Formation A truth table represents a table having all combinations of inputs and their corresponding result. It is possible to convert the switching equation into a truth table. For example, consider the following switching equation. The output will be high (1) if A = 1 or BC = 1 or both are 1. The truth table for this equation is shown in Table (a). The number of rows in the truth table is 2n where n is the number of input variables (n=3 for the given equation). Hence there are 23 = 8 possibleinput combination of inputs. Truth Table Formation A truth table represents a table having all combinations of inputs and their corresponding result. It is possible to convert the switching equation into a truth table. For example, consider the following switching equation.
  • 17. The output will be high (1) if A = 1 or BC = 1 or both are 1. The truth table for this equation is shown in Table (a). The number of rows in the truth table is 2n where n is the number of input variables (n=3 for the given equation). Hence there are 23 = 8 possible input combination of inputs. Methods to Simplify a Boolean Function The methods used for simplifying a Boolean function are as follows: -map or K-map, and Karnaugh-map or K-map
  • 18. The Boolean theorems and the De-Morgan's theorems are useful in manipulating the logic expression. We can realize the logical expression using gates. The number of logic gates required for the realization of a logical expression should be reduced to a minimum possible value by K-map method. This method can be done in two different ways, as discussed below. Sum of Products (SOP) Form It is in the form of sum of three terms AB, AC, BC with each individual term is a product of two variables. Say A.B or A.C etc. Therefore such expressions are known as expression in SOP form. The sum and products in SOP form are not the actual additions or multiplications. In fact they are the OR and AND functions. In SOP form, 0 represents a bar and 1 represents an unbar. SOP form is represented by . Given below is an example of SOP.
  • 19. Product of Sums (POS) Form It is in the form of product of three terms (A+B), (B+C), or (A+C) with each term is in the form of a sum of two variables. Such expressions are said to be in the product of sums (POS) form. In POS form, 0 represents an unbar and 1 represents a bar. POS form is represented by . ] Given below is an example of POS.
  • 20. Logic gates are the basic building blocks of any digital system. It is an electronic circuit having one or more than one input and only one output. The relationship between the input and the output is based on a certainlogic. Based on this, logic gates are named as AND gate, OR gate, NOT gate etc. DE MORGAN'S THEOREMS De Morgan has suggestedtwotheoremswhichare extremelyusefulinBooleanAlgebra.The two theoremsare discussedbelow. Theorem 1  The left hand side (LHS) of this theorem represents a NAND gate with inputs A and B, whereas the right hand side (RHS) of the theorem represents an OR gate with inverted inputs. Bubbled OR.
  • 21. Table showingverificationof the De Morgan's firsttheorem: Theorem 2  The LHS of this theorem represents a NOR gate with inputs A and B, whereas the RHS represents an AND gate with inverted inputs.
  • 22. Bubbled AND. Table showingverificationof the De Morgan's secondtheorem:
  • 23.
  • 24. Basic Gates AND Gate A circuit which performs an AND operation is shown in figure. It has n input (n >= 2) and one output. Logic diagram
  • 25. Truth Table OR Gate A circuit which performs an OR operation is shown in figure. It has n input (n >= 2) and one output. Logic diagram Truth Table
  • 26. NOT Gate NOT gate is also known as Inverter. It has one input A and one output Y. Logic diagram Truth Table
  • 27. NAND Gate: - A NOT-AND operation is known as NAND operation. It has n input (n >= 2) and one output. Logic diagram Truth Table
  • 28. NOR Gate A NOT-ORoperation is known as NOR operation. It has n input (n >= 2) and one output. Logic diagram Truth Table
  • 29. XOR Gate XOR or Ex-OR gate is a special type of gate. It can be used in the half adder, full adder and subtract or. The exclusive-OR gate is abbreviated as EX-OR gate or sometime as X-OR gate. It has n input (n >= 2) and one output. Logic diagram
  • 30. Truth Table XNOR Gate XNOR gate is a special type of gate. It can be used in the half adder, full adder and subtract or. The exclusive-NOR gate is abbreviated as EX-NOR gate or sometime as X-NOR gate. It has n input (n >= 2) and one output. Logic diagram Truth Table
  • 31. AIM To find truth table & Boolean expression from given Diagram of given Boolean expression. GIVEN -
  • 33. OUTPUT: A B B A.B (A.B)+B Y= [(A.B+B)].A 0 0 1 0 1 0 0 1 0 0 0 0 1 0 1 0 1 1 1 1 0 1 1 1
  • 34. Fig-1 I/P IP1 IP2 O/P - L H L I/P TP1 TP2 0/P + H H H + L H
  • 35. - H L I/P IP1 IP2 O/P + L H H - H H
  • 36. I/P IP1 IP2 O/P - L L L + L L