SlideShare a Scribd company logo
CS8351
DIGITAL PRINCIPLES AND
SYSTEM DESIGN
BY
E.VINOTH, AP/ECE
MOOKAMBIGAI COLLEGE OF ENGINEERING
1
UNIT 1
BOOLEAN ALGEBRA AND
LOGIC GATES
2
INTRODUCTION
What is Digital System?
 Digital describes electronic technology that generates, stores and processes
data in terms of two states: positive and non-positive.
 Here, Positive state is ‘1’ and Non positive state is ‘0’.
 Digital systems are used in communication, business transactions, traffic
control, spacecraft guidance, medical treatment, weather monitoring, the
Internet and many other commercial, industrial and scientific enterprises.
3
NUMBER SYSTEMS
 Number system is a basis for counting various items.
 The decimal number system has 10 digits:0, 1, 2, 3, 4, 5, 6, 7, 8 and 9, but
the modern computers communicate and operate with binary numbers
which use only the digits 0 and 1.
 When decimal quantities are represented in the binary form, they take
more digits.
 For large decimal numbers people have to deal with very large binary
strings and therefore, they do not like working with binary numbers. This
fact gave rise to three new number systems : Octal, Hexadecimal and
Binary Coded Decimal (BCD).
4
NUMBER SYSTEMS (CONT.,)
 Binary Number system (0 and 1).
 Octal Number system (0 to 7).
 Decimal Number system ( 0 to 9).
 Hexadecimal Number system (0 to 15) which means 10 as A, 11 as B, 12
as C, 13 as D, 14 as E and 15 as F).
5
NUMBER SYSTEMS (CONT.,)
 Single binary digit is called as a bit.
 4 binary digit is called as a nibble.
 8 binary digit is called as a byte.
 16 binary digit is called as a word.
6
BINARY NUMBER SYSTEM
 It is base two or radix two system.
 The two binary digits (bits) are 1 and 0.
 The weight is expressed as a power of 2.
 Eg. (1101.1011)2
1 1 0 1 1 0 1 1
7
OCTAL NUMBER SYSTEM
 It is base eight or radix eight system.
 The digits are 0, 1, 2, 3, 4, 5, 6 and 7.
 The weight is expressed as a power of 8.
 Eg. (5632.471)8
8
Octal Point
DECIMAL NUMBER SYSTEM
 It is base ten or radix ten system.
 The digits are 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.
 The weight is expressed as a power of 10.
 Eg. (5678.9)10
9
Decimal Point
HEXADECIMAL NUMBER
SYSTEM
 It is base 16 or radix 16 system.
 The digits are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E and F.
 The weight is expressed as a power of 16.
 Eg. (3FD.84)16
10
Hexadecimal Point
RELATION BETWEEN 2, 8, 10
AND 16
11
CONVERSION
 We have 4 number systems, so that there are 12 conversions such as,
 Binary to Octal, Binary to Decimal and Binary to Hexadecimal .
 Decimal to Binary, Decimal to Octal and Decimal to Hexadecimal.
 Octal to Binary, Octal to Decimal and Octal to Hexadecimal.
 Hexadecimal to Binary, Hexadecimal to Octal and Hexadecimal to
Decimal.
12
BINARY TO OCTAL
CONVERSION
Eg. Binary Input : (010100111.100011)2
13
4
BINARY TO DECIMAL
CONVERSION
1 0 1 1 . 1 0 1
1 x 2-3 = 0.125
0 x 2-2 = 0
1 x 2-1 = 0.5
1 x 20 = 1
1 x 21 = 2
0 x 22 = 0
1 x 23 = 8
11.625
Eg. Binary Input : (1011.101)2
14
BINARY TO HEXADECIMAL
CONVERSION
Eg. Binary Input : (1111001010010100001.010110110011011)2
15
OCTAL TO BINARY
CONVERSION
 Eg. Octal Input : (35.346)8
16
011
OCTAL TO DECIMAL
CONVERSION
1 2 0 7 . 1 2 5
5 x 8-3 = 0.0097
2 x 8-2 = 0.0313
1 x 8-1 = 0.125
7 x 80 = 7
0 x 81 = 0
2 x 82 = 128
1 x 83 = 512
647.1660
Eg. Octal Input : (1207.125)8
17
OCTAL TO HEXADECIMAL
CONVERSION
18
DECIMAL TO BINARY
CONVERSION
Eg. Decimal Input : (39.47)10
Binary Output : (100111.01111)2
19
0
1
1
1
1
DECIMAL TO OCTAL
CONVERSION
Eg. Decimal Input : (225.225)10
Octal Output : (341.16314)8
20
DECIMAL TO HEXADECIMAL
CONVERSION
Eg. Decimal Input : (374.37)10
Hexadecimal Output : (176.5EB8)16
21
HEXADECIMAL TO BINARY
CONVERSION
Binary Output : (1111001010010100001.010110110011011)2
Hexadecimal Input : (794A1.5B36)16
7 9 4 A 1 . 5 B 3 6
0111 1001 0100 1010 0001 . 0101 1011 0011 0110
22
HEXADECIMAL TO OCTAL
CONVERSION
 There is no direct conversion of hexadecimal to octal form.
 1. convert the hexadecimal number to binary.
 2. convert the binary number to octal number.
Eg. Hexadecimal Input (39. A)16
3 9 . A
0011 1001 . 1010
000 111 001 . 101 000
0 7 1 . 5 0
Octal Output
(71.5)8
Group the converted binary number
into three to convert it into octal number
23
HEXADECIMAL TO DECIMAL
CONVERSION
A 2 1 E . 1 0 D
D x 16-3 = 0.0032
0 x 16-2 = 0
1 x 16-1 = 0.0625
E x 160 = 14
1 x 161 = 16
2 x 162 = 512
A x 163 = 40960
41502.0657
24
ARITHMETIC OPERATIONS
 Binary Addition.
 Binary Subtraction.
 Binary Multiplication.
 Binary Division.
25
BINARY ADDITION
For 2 Inputs For 3 Inputs
26
BINARY ADDITION (Cont.,)
27
BINARY ADDITION (Cont.,)
28
BINARY SUBTRACTION
For 2 Inputs For 3 Inputs
29
BINARY SUBTRACTION
(Cont.,)
30
BINARY SUBTRACTION
(Cont.,)
Subtract (26)10 and (12)10 by converting them into
binary
31
BINARY SUBTRACTION USING
1’s COMPLEMENT
32
BINARY SUBTRACTION USING
1’s COMPLEMENT (Cont.,)
33
BINARY SUBTRACTION USING
1’s COMPLEMENT (Cont.,)
34
BINARY SUBTRACTION USING
2’s COMPLEMENT
35
BINARY SUBTRACTION USING
2’s COMPLEMENT
36
BINARY SUBTRACTION USING
2’s COMPLEMENT
37
BINARY MULTIPLICATION
38
BINARY MULTIPLICATION
(Cont.,)
39
BINARY DIVISION
40
BINARY DIVISION (Cont.,)
41
BINARY DIVISION (Cont.,)
Divide (15)10 and (3)10 by converting them into binary
42
BINARY CODES
43
CLASSIFICATION OF BINARY
CODES
44
BCD CODES
45
BCD CODES
Note: 0 to 9 only
46
EXCESS 3 CODE
47
GRAY CODES
48
BINARY TO GRAY CODES
Eg. Convert the given binary code into gray code.
(11101)2
49
BINARY TO GRAY CODES
50
GRAY TO BINARY CODES
Eg. Convert the given gray code into binary code.
(10011)2
51
GRAY TO BINARY CODES
52
BCD TO EXCESS 3 CODES
Note: Add 3 to every BCD Code i.e., Add 0011 to BCD code we can obtain Excess
53
EXCESS 3 TO BCD CODES
54
LOGIC GATES
 Logic gates are the basic elements that make up a digital
system.
 The electronic gate is a circuit that is able to operate on a
number of binary inputs in order to perform a particular
logical function.
 The types of gates available are the NOT, AND, OR,
NAND, NOR, exclusive-OR, and the exclusive-NOR.
55
LOGIC GATES (Cont.,)
56
AND GATE
57
OR GATE
58
NOT GATE
59
NAND GATE
60
NOR GATE
61
EX-OR GATE
62
EX-NOR GATE
63
COMPARISON
NAME SYMBOL OPERATION IC NUMBER
AND GATE IC 7408
OR GATE IC 7432
NOT GATE IC 7404
NAND GATE IC 7400
NOR GATE IC 7402
EX-OR GATE IC 7486
EX-NOR GATE IC 74266
B
A
X 

B
A
X 

A
X 
B
A
X 

B
A
X 

B
A
X 

B
A
X 

64
BOOLEAN ALGEBRA
 The Boolean algebra is used to express the output of any
combinational network.
 Such a network can be implemented using logic gates.
 Boolean Algebra Terminology
 Variable.
 Constant.
 Complement.
 Literal.
65
BOOLEAN FUNCTION
66
PROPERTIES AND THEOREMS OF BOOLEAN
ALGEBRA
(Closure)
67
PROPERTIES AND THEOREMS OF BOOLEAN
ALGEBRA
68
EXAMPLES
69
EXAMPLES
70
DEMORGAN’S THEOREM
 DeMorgan suggested two theorems that form an important
part of Boolean algebra. In the equation form, they are
71
CONSENSUS THEOREM
 In simplification of Boolean expression, an expression of the
form AB+ AC+ BC the term BC is redundant and can be
eliminated to form the equivalent expression AB+ AC. The
theorem used for this simplification is known as consensus
theorem and it is stated as
72
HOW TO IDENTIFY
CONSENSUS
 Find a pair of terms, one of which contains a variable and the
other contains its complement.
 Find the third term which should contain the remaining
variables from pair of terms eliminating selected variable and
its complement.
73
CONSENSUS THEOREM
EXAMPLES
74
EXAMPLES
75
EXAMPLES
76
EXAMPLES
77
EXAMPLES
78
EXAMPLES
79
BOOLEAN EXPRESSIONS
 Boolean expressions are constructed by connecting the
Boolean constants and variables with the Boolean operations.
These Boolean expressions are also known as Boolean
formulas.
 For example, if the Boolean expression (A + B) C is used to
describe the function f, then Boolean function is written as
f(A, B, C) = (A + B) C or f = (A + B)C
80
BOOLEAN EXPRESSIONS
(Cont.,)
 In this Boolean function the variables are appeared either in a
complemented or an uncomplemented form.
 Each occurrence of a variable in either a complemented or an
uncomplemented form is called a literal.
81
BOOLEAN EXPRESSIONS
(Cont.,)
 These literals and terms are arranged in one of the two forms
:
 Sum of product form (SOP)
 A product term is any group of literals that are ANDed
together.
 Product of sum form (POS).
 A product of sums is any groups of sum terms ANDed
together.
82
BOOLEAN EXPRESSIONS
(Cont.,)
 Sum of product form (SOP)
 Product of sum form (POS).
83
STANDARD (CANONICAL)
SOP
 If each term in SOP form contains all the literals then the
SOP form is known as standard or canonical SOP form.
 Each individual term in the standard SOP form is called
minterm.
84
STANDARD (CANONICAL) POS FORM
(Cont.,)
 If each term in POS form contains all the literals then the
POS form is known as standard or canonical POS form.
 Each individual term in the standard POS form is called
maxterm.
85
CONVERTING EXPRESSIONS IN STANDARD
SOP
 Step 1 : Find the missing literal in each product term if any.
 Step 2 : AND each product term having missing literal/s with
term/s form by Oring the literal and its complement.
 Step 3 : Expand the terms by applying distributive law and
reorder the literals in the product terms.
 Step 4 : Reduce the expression by omitting repeated product
terms if any. Because A+A=A.
86
CONVERTING EXPRESSIONS IN STANDARD SOP
(Cont.,)
87
CONVERTING EXPRESSIONS IN STANDARD SOP
(Cont.,)
88
CONVERTING EXPRESSIONS IN STANDARD SOP
(Cont.,)
89
CONVERTING EXPRESSIONS IN STANDARD
POS
 Step 1 : Find the missing literals in each sum term if any.
 Step 2 : OR each sum term having missing literal/s with
term/s form by ANDing the literal and its complement.
 Step 3 : Expand the terms by applying distributive law and
reorder the literals in the sum terms.
 Step 4 : Reduce the expression by omitting repeated sum
terms if any. Because A·A=A
90
CONVERTING EXPRESSIONS IN STANDARD POS
(Cont.,)
91
CONVERTING EXPRESSIONS IN STANDARD POS
(Cont.,)
92
CONVERTING EXPRESSIONS IN STANDARD POS
(Cont.,)
93
CONVERTING EXPRESSIONS IN STANDARD POS
(Cont.,)
94
MINTERMS AND MAXTERMS
 Each individual term in standard SOP form is called minterm
and each individual term in standard POS form is called
maxterm.
95
MINTERMS AND MAXTERMS
(Cont.,)
96
COMPLEMENTS OF STANDARD
FORMS
 The POS and SOP functions derived from the same truth
table are logically equivalent.
 In terms of minterms and maxterms we can then write
 Using this complementary relationship we can find logical
function in terms of maxterms if function in minterms is known
or vice-versa.
97
EXAMPLES
98
EXAMPLES (Cont.,)
99
KARNAUGH MAP (K MAP)
 During the process of simplification of Boolean expression we
have to predict each successive step.
 On the other hand, the map method gives us a systematic
approach for simplifying a Boolean expression.
 The map method, first proposed by Veitch and modified by
Karnaugh, hence it is known as the Veitch diagram or the
Karnaugh map.
100
K MAP
 The basis of this method is a graphical chart known as
Karnaugh map (K-map).
 It contains boxes called cells.
 Each of the cell represents one of the 2n possible products
that can be formed from n variables.
 Thus, a 2-variable map contains 22= 4 cells, a 3-variable map
contains 23= 8 cells and so forth.
101
K MAP (Cont.,)
102
ONE VARIABLE
MINTER
M
MAXTER
M
103
TWO VARIABLE
MINTER
M
MAXTER
M
104
THREE VARIABLE
MINTER
M
MAXTER
M
105
FOUR VARIABLE
MINTER
M
MAXTER
M
106
PLOTTING A K MAP
107
PLOTTING A K MAP (Cont.,)
108
PLOTTING A K MAP (Cont.,)
109
PLOTTING A K MAP (Cont.,)
110
PLOTTING A K MAP (Cont.,)
111
PLOTTING A K MAP (Cont.,)
112
GROUPING
113
GROUPING (Cont.,)
114
GROUPING (Cont.,)
115
GROUPING (Cont.,)
116
ILLEGAL GROUPING
117
SIMPLIFICATION OF SOP
EXPRESSION
1. Plot the K-map and place 1s. in those cells corresponding to
the 1s in the truth table or sum of product expression. Place
0s in other cells.
2. Check the K-map for adjacent 1s and encircle those 1s
which are not adjacent to any other 1s. These are called
isolated 1s.
3. Check for those 1s which are adjacent to only one other 1
and encircle such pairs.
118
SIMPLIFICATION OF SOP
EXPRESSION
4. Check for quads and octets of adjacent 1s even if it contains
some 1s that have already been encircled. While doing this
make sure that there are minimum number of groups.
5. Combine any pairs necessary to include any 1s that have
not yet been grouped.
6. Form the simplified expression by summing product terms of
all the groups.
119
EXAMPLES
120
EXAMPLES (Cont.,)
121
DON'T CARE TERMS
 In some logic circuits, certain input conditions never occur,
therefore the corresponding output never appears.
 In such cases the output level is not defined, it can be either
HIGH or LOW.
 These output levels are indicated by `X' or `d' in the truth
tables and are called don't care outputs or don't care
conditions or incompletely specified functions.
122
DON'T CARE TERMS (Cont.,)
 A circuit designer is free to make the output for any "don't
care" condition either a ‘0’ or a ‘1’ in order to produce the
simplest output expression.
123
DON'T CARE TERMS (Cont.,)
124
EXAMPLES
125
EXAMPLES (Cont.,)
126
EXAMPLES (Cont.,)
127
EXAMPLES (Cont.,)
128
EXAMPLES (Cont.,)
129
SIMPLICATION OF POS
EXPRESSION
1. Plot the K-map and place 0s in those cells corresponding to
the 0s in the truth table or maxterms in the product of sums
expression.
2. Check the K-map for adjacent 0s and encircle those 0s
which are not adjacent to any other 0s. These are called
isolated 0s.
3. Check for those 0s which are adjacent to only one other 0
and encircle such pairs.
130
SIMPLICATION OF POS
EXPRESSION
4. Check for quads and octets of adjacent 0s even if it contains
some 0s that have already been encircled. While doing this
make sure that there are minimum number of groups.
5. Combine any pairs necessary to include any 0s that have
not yet been grouped.
6. Form the simplified POS expression for F by taking product
of sum terms of all the groups.
131
EXAMPLES
132
EXAMPLES (Cont.,)
133
EXAMPLES (Cont.,)
134
EXAMPLES (Cont.,)
135
IMPLEMENTATION OF BOOLEAN
FUNCTION
 The Boolean algebra is used to express the output of any
combinational network.
 Such a network can be implemented using logic gates.
 Basic Gates – AND, OR, NOT
 Universal Gate – NAND, NOR
 Other Gate – EX-OR, EX-NOR
136
IMPLEMENTATION OF SOP
137
IMPLEMENTATION OF POS
138
EXAMPLES
139
EXAMPLES (Cont.,)
FULL ADDER
140
NOT GATE USING NAND
GATE
141
AND GATE USING NAND
GATE
142
OR GATE USING NAND GATE
143
NOT GATE USING NOR GATE
144
AND GATE USING NOR GATE
145
OR GATE USING NOR GATE
146
EXAMPLES
147
EXAMPLES (Cont.,)
148
THANK YOU
149
QUERIES ?
150

More Related Content

Similar to Unit 1. Boolean Algebra and Logic Gates.pptx

chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptxchapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptxSurendra Loya
 
Chapter 1 Digital Systems and Binary Numbers.ppt
Chapter 1 Digital Systems and Binary Numbers.pptChapter 1 Digital Systems and Binary Numbers.ppt
Chapter 1 Digital Systems and Binary Numbers.pptAparnaDas827261
 
Principles of Combinational Logic-1
Principles of Combinational Logic-1Principles of Combinational Logic-1
Principles of Combinational Logic-1Supanna Shirguppe
 
Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1Deepak John
 
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
 
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
 
Chapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbersChapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbersMohammad Bashartullah
 
Data representation and boolean algebra
Data representation and boolean algebraData representation and boolean algebra
Data representation and boolean algebragourav kottawar
 
Lecture 05-Logic expression and Boolean Algebra.pptx
Lecture 05-Logic expression and Boolean Algebra.pptxLecture 05-Logic expression and Boolean Algebra.pptx
Lecture 05-Logic expression and Boolean Algebra.pptxWilliamJosephat1
 
Digital Electronics Notes
Digital Electronics Notes Digital Electronics Notes
Digital Electronics Notes Srikrishna Thota
 
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
 
W2 Chapter 2A Notes CCB1223 Digital Logic.pdf
W2 Chapter 2A Notes CCB1223 Digital Logic.pdfW2 Chapter 2A Notes CCB1223 Digital Logic.pdf
W2 Chapter 2A Notes CCB1223 Digital Logic.pdfMOHDZAMRIBINIBRAHIM1
 
Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawabAmmar_n
 
digital systems and information
digital systems and informationdigital systems and information
digital systems and informationKamran Zafar
 
Number system and conversions between different number systems
Number system and conversions between different number systemsNumber system and conversions between different number systems
Number system and conversions between different number systemswafaashalash
 

Similar to Unit 1. Boolean Algebra and Logic Gates.pptx (20)

DE notes
DE notesDE notes
DE notes
 
Number system
Number systemNumber system
Number system
 
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptxchapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
 
Chapter 1 Digital Systems and Binary Numbers.ppt
Chapter 1 Digital Systems and Binary Numbers.pptChapter 1 Digital Systems and Binary Numbers.ppt
Chapter 1 Digital Systems and Binary Numbers.ppt
 
Principles of Combinational Logic-1
Principles of Combinational Logic-1Principles of Combinational Logic-1
Principles of Combinational Logic-1
 
Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1
 
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...
 
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
 
Chapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbersChapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbers
 
Module 4
Module 4Module 4
Module 4
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
 
Data representation and boolean algebra
Data representation and boolean algebraData representation and boolean algebra
Data representation and boolean algebra
 
Lecture 05-Logic expression and Boolean Algebra.pptx
Lecture 05-Logic expression and Boolean Algebra.pptxLecture 05-Logic expression and Boolean Algebra.pptx
Lecture 05-Logic expression and Boolean Algebra.pptx
 
Digital Electronics Notes
Digital Electronics Notes Digital Electronics Notes
Digital Electronics Notes
 
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
 
Chap02_1473751047_598100.ppt
Chap02_1473751047_598100.pptChap02_1473751047_598100.ppt
Chap02_1473751047_598100.ppt
 
W2 Chapter 2A Notes CCB1223 Digital Logic.pdf
W2 Chapter 2A Notes CCB1223 Digital Logic.pdfW2 Chapter 2A Notes CCB1223 Digital Logic.pdf
W2 Chapter 2A Notes CCB1223 Digital Logic.pdf
 
Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawab
 
digital systems and information
digital systems and informationdigital systems and information
digital systems and information
 
Number system and conversions between different number systems
Number system and conversions between different number systemsNumber system and conversions between different number systems
Number system and conversions between different number systems
 

Recently uploaded

1. Henrich Triangle Safety and Fire Presentation
1. Henrich Triangle Safety and Fire Presentation1. Henrich Triangle Safety and Fire Presentation
1. Henrich Triangle Safety and Fire PresentationBhuwanAgrawal8
 
The battle for RAG, explore the pros and cons of using KnowledgeGraphs and Ve...
The battle for RAG, explore the pros and cons of using KnowledgeGraphs and Ve...The battle for RAG, explore the pros and cons of using KnowledgeGraphs and Ve...
The battle for RAG, explore the pros and cons of using KnowledgeGraphs and Ve...Roi Lipman
 
Introduction to Machine Learning Unit-4 Notes for II-II Mechanical Engineering
Introduction to Machine Learning Unit-4 Notes for II-II Mechanical EngineeringIntroduction to Machine Learning Unit-4 Notes for II-II Mechanical Engineering
Introduction to Machine Learning Unit-4 Notes for II-II Mechanical EngineeringC Sai Kiran
 
KIT-601 Lecture Notes-UNIT-3.pdf Mining Data Stream
KIT-601 Lecture Notes-UNIT-3.pdf Mining Data StreamKIT-601 Lecture Notes-UNIT-3.pdf Mining Data Stream
KIT-601 Lecture Notes-UNIT-3.pdf Mining Data StreamDr. Radhey Shyam
 
Online resume builder management system project report.pdf
Online resume builder management system project report.pdfOnline resume builder management system project report.pdf
Online resume builder management system project report.pdfKamal Acharya
 
Paint shop management system project report.pdf
Paint shop management system project report.pdfPaint shop management system project report.pdf
Paint shop management system project report.pdfKamal Acharya
 
Laundry management system project report.pdf
Laundry management system project report.pdfLaundry management system project report.pdf
Laundry management system project report.pdfKamal Acharya
 
2024 DevOps Pro Europe - Growing at the edge
2024 DevOps Pro Europe - Growing at the edge2024 DevOps Pro Europe - Growing at the edge
2024 DevOps Pro Europe - Growing at the edgePaco Orozco
 
ONLINE CAR SERVICING SYSTEM PROJECT REPORT.pdf
ONLINE CAR SERVICING SYSTEM PROJECT REPORT.pdfONLINE CAR SERVICING SYSTEM PROJECT REPORT.pdf
ONLINE CAR SERVICING SYSTEM PROJECT REPORT.pdfKamal Acharya
 
Natalia Rutkowska - BIM School Course in Kraków
Natalia Rutkowska - BIM School Course in KrakówNatalia Rutkowska - BIM School Course in Kraków
Natalia Rutkowska - BIM School Course in Krakówbim.edu.pl
 
Arduino based vehicle speed tracker project
Arduino based vehicle speed tracker projectArduino based vehicle speed tracker project
Arduino based vehicle speed tracker projectRased Khan
 
Introduction to Machine Learning Unit-5 Notes for II-II Mechanical Engineering
Introduction to Machine Learning Unit-5 Notes for II-II Mechanical EngineeringIntroduction to Machine Learning Unit-5 Notes for II-II Mechanical Engineering
Introduction to Machine Learning Unit-5 Notes for II-II Mechanical EngineeringC Sai Kiran
 
Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.PrashantGoswami42
 
Lect 2 - Design of slender column-2.pptx
Lect 2 - Design of slender column-2.pptxLect 2 - Design of slender column-2.pptx
Lect 2 - Design of slender column-2.pptxHamzaKhawar4
 
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and ClusteringKIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and ClusteringDr. Radhey Shyam
 
一比一原版(UNK毕业证)内布拉斯加州立大学科尼分校毕业证成绩单
一比一原版(UNK毕业证)内布拉斯加州立大学科尼分校毕业证成绩单一比一原版(UNK毕业证)内布拉斯加州立大学科尼分校毕业证成绩单
一比一原版(UNK毕业证)内布拉斯加州立大学科尼分校毕业证成绩单tuuww
 
Teachers record management system project report..pdf
Teachers record management system project report..pdfTeachers record management system project report..pdf
Teachers record management system project report..pdfKamal Acharya
 
Supermarket billing system project report..pdf
Supermarket billing system project report..pdfSupermarket billing system project report..pdf
Supermarket billing system project report..pdfKamal Acharya
 
KIT-601 Lecture Notes-UNIT-5.pdf Frame Works and Visualization
KIT-601 Lecture Notes-UNIT-5.pdf Frame Works and VisualizationKIT-601 Lecture Notes-UNIT-5.pdf Frame Works and Visualization
KIT-601 Lecture Notes-UNIT-5.pdf Frame Works and VisualizationDr. Radhey Shyam
 
NO1 Pandit Black Magic Removal in Uk kala jadu Specialist kala jadu for Love ...
NO1 Pandit Black Magic Removal in Uk kala jadu Specialist kala jadu for Love ...NO1 Pandit Black Magic Removal in Uk kala jadu Specialist kala jadu for Love ...
NO1 Pandit Black Magic Removal in Uk kala jadu Specialist kala jadu for Love ...Amil baba
 

Recently uploaded (20)

1. Henrich Triangle Safety and Fire Presentation
1. Henrich Triangle Safety and Fire Presentation1. Henrich Triangle Safety and Fire Presentation
1. Henrich Triangle Safety and Fire Presentation
 
The battle for RAG, explore the pros and cons of using KnowledgeGraphs and Ve...
The battle for RAG, explore the pros and cons of using KnowledgeGraphs and Ve...The battle for RAG, explore the pros and cons of using KnowledgeGraphs and Ve...
The battle for RAG, explore the pros and cons of using KnowledgeGraphs and Ve...
 
Introduction to Machine Learning Unit-4 Notes for II-II Mechanical Engineering
Introduction to Machine Learning Unit-4 Notes for II-II Mechanical EngineeringIntroduction to Machine Learning Unit-4 Notes for II-II Mechanical Engineering
Introduction to Machine Learning Unit-4 Notes for II-II Mechanical Engineering
 
KIT-601 Lecture Notes-UNIT-3.pdf Mining Data Stream
KIT-601 Lecture Notes-UNIT-3.pdf Mining Data StreamKIT-601 Lecture Notes-UNIT-3.pdf Mining Data Stream
KIT-601 Lecture Notes-UNIT-3.pdf Mining Data Stream
 
Online resume builder management system project report.pdf
Online resume builder management system project report.pdfOnline resume builder management system project report.pdf
Online resume builder management system project report.pdf
 
Paint shop management system project report.pdf
Paint shop management system project report.pdfPaint shop management system project report.pdf
Paint shop management system project report.pdf
 
Laundry management system project report.pdf
Laundry management system project report.pdfLaundry management system project report.pdf
Laundry management system project report.pdf
 
2024 DevOps Pro Europe - Growing at the edge
2024 DevOps Pro Europe - Growing at the edge2024 DevOps Pro Europe - Growing at the edge
2024 DevOps Pro Europe - Growing at the edge
 
ONLINE CAR SERVICING SYSTEM PROJECT REPORT.pdf
ONLINE CAR SERVICING SYSTEM PROJECT REPORT.pdfONLINE CAR SERVICING SYSTEM PROJECT REPORT.pdf
ONLINE CAR SERVICING SYSTEM PROJECT REPORT.pdf
 
Natalia Rutkowska - BIM School Course in Kraków
Natalia Rutkowska - BIM School Course in KrakówNatalia Rutkowska - BIM School Course in Kraków
Natalia Rutkowska - BIM School Course in Kraków
 
Arduino based vehicle speed tracker project
Arduino based vehicle speed tracker projectArduino based vehicle speed tracker project
Arduino based vehicle speed tracker project
 
Introduction to Machine Learning Unit-5 Notes for II-II Mechanical Engineering
Introduction to Machine Learning Unit-5 Notes for II-II Mechanical EngineeringIntroduction to Machine Learning Unit-5 Notes for II-II Mechanical Engineering
Introduction to Machine Learning Unit-5 Notes for II-II Mechanical Engineering
 
Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.
 
Lect 2 - Design of slender column-2.pptx
Lect 2 - Design of slender column-2.pptxLect 2 - Design of slender column-2.pptx
Lect 2 - Design of slender column-2.pptx
 
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and ClusteringKIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
 
一比一原版(UNK毕业证)内布拉斯加州立大学科尼分校毕业证成绩单
一比一原版(UNK毕业证)内布拉斯加州立大学科尼分校毕业证成绩单一比一原版(UNK毕业证)内布拉斯加州立大学科尼分校毕业证成绩单
一比一原版(UNK毕业证)内布拉斯加州立大学科尼分校毕业证成绩单
 
Teachers record management system project report..pdf
Teachers record management system project report..pdfTeachers record management system project report..pdf
Teachers record management system project report..pdf
 
Supermarket billing system project report..pdf
Supermarket billing system project report..pdfSupermarket billing system project report..pdf
Supermarket billing system project report..pdf
 
KIT-601 Lecture Notes-UNIT-5.pdf Frame Works and Visualization
KIT-601 Lecture Notes-UNIT-5.pdf Frame Works and VisualizationKIT-601 Lecture Notes-UNIT-5.pdf Frame Works and Visualization
KIT-601 Lecture Notes-UNIT-5.pdf Frame Works and Visualization
 
NO1 Pandit Black Magic Removal in Uk kala jadu Specialist kala jadu for Love ...
NO1 Pandit Black Magic Removal in Uk kala jadu Specialist kala jadu for Love ...NO1 Pandit Black Magic Removal in Uk kala jadu Specialist kala jadu for Love ...
NO1 Pandit Black Magic Removal in Uk kala jadu Specialist kala jadu for Love ...
 

Unit 1. Boolean Algebra and Logic Gates.pptx