SlideShare a Scribd company logo
1 of 75
1
Reverse of a Regular Language
2
Theorem:
The reverse of a regular language
is a regular language
R
L L
Proof idea:
Construct NFA that accepts :
R
L
invert the transitions of the NFA
that accepts L
3
Proof
Since is regular,
there is NFA that accepts
L
Example:
baabL += *
a
b
b
a
L
4
Invert Transitions
a
b
b
a
5
Make old initial state a final state
a
b
b
a
6
Add a new initial state
a
b
b
a
λ
λ
7
a
b
b
a
λ
λ
Resulting machine accepts R
L
baabL += *
ababLR
+= *
R
L is regular
8
Grammars
9
Grammars
Grammars express languages
Example: the English language
verbpredicate
nounarticlephrasenoun
predicatephrasenounsentence
→
→
→
_
_
10
walksverb
runsverb
dognoun
boynoun
thearticle
aarticle
→
→
→
→
→
→
11
A derivation of “the boy walks”:
walksboythe
verbboythe
verbnounthe
verbnounarticle
verbphrasenoun
predicatephrasenounsentence
⇒
⇒
⇒
⇒
⇒
⇒
_
_
12
A derivation of “a dog runs”:
runsdoga
verbdoga
verbnouna
verbnounarticle
verbphrasenoun
predicatephrasenounsentence
⇒
⇒
⇒
⇒
⇒
⇒
_
_
13
Language of the grammar:
L = { “a boy runs”,
“a boy walks”,
“the boy runs”,
“the boy walks”,
“a dog runs”,
“a dog walks”,
“the dog runs”,
“the dog walks” }
14
Notation
dognoun
boynoun
→
→
Variable
or
Non-terminal
TerminalProduction
rule
15
Another Example
Grammar:
Derivation of sentence :
λ→
→
S
aSbS
abaSbS ⇒⇒
ab
aSbS → λ→S
16
aabbaaSbbaSbS ⇒⇒⇒
aSbS → λ→S
aabb
λ→
→
S
aSbSGrammar:
Derivation of sentence :
17
Other derivations:
aaabbbaaaSbbbaaSbbaSbS ⇒⇒⇒⇒
aaaabbbbaaaaSbbbb
aaaSbbbaaSbbaSbS
⇒⇒
⇒⇒⇒
18
Language of the grammar
λ→
→
S
aSbS
}0:{ ≥= nbaL nn
19
More Notation
Grammar ( )PSTVG ,,,=
:V
:T
:S
:P
Set of variables
Set of terminal symbols
Start variable
Set of Production rules
20
Example
Grammar :
λ→
→
S
aSbSG
( )PSTVG ,,,=
}{SV = },{ baT =
},{ λ→→= SaSbSP
21
More Notation
Sentential Form:
A sentence that contains
variables and terminals
Example:
aaabbbaaaSbbbaaSbbaSbS ⇒⇒⇒⇒
Sentential Forms sentence
22
We write:
Instead of:
aaabbbS
*
⇒
aaabbbaaaSbbbaaSbbaSbS ⇒⇒⇒⇒
23
In general we write:
If:
nww
*
1 ⇒
nwwww ⇒⇒⇒⇒ 321
24
By default: ww
*
⇒
25
Example
λ→
→
S
aSbS
aaabbbS
aabbS
abS
S
*
*
*
*
⇒
⇒
⇒
⇒λ
Grammar Derivations
26
baaaaaSbbbbaaSbb
aaSbbS
∗
∗
⇒
⇒
λ→
→
S
aSbS
Grammar
Example
Derivations
27
Another Grammar Example
Grammar :
λ→
→
→
A
aAbA
AbS
Derivations:
aabbbaaAbbbaAbbS
abbaAbbAbS
bAbS
⇒⇒⇒
⇒⇒⇒
⇒⇒
G
28
More Derivations
aaaabbbbbaaaaAbbbbb
aaaAbbbbaaAbbbaAbbAbS
⇒⇒
⇒⇒⇒⇒
bbaS
bbbaaaaaabbbbS
aaaabbbbbS
nn
∗
∗
∗
⇒
⇒
⇒
29
Language of a Grammar
For a grammar
with start variable :
G
S
}:{)( wSwGL
∗
⇒=
String of terminals
30
Example
For grammar :
λ→
→
→
A
aAbA
AbS
}0:{)( ≥= nbbaGL nn
Since: bbaS nn
∗
⇒
G
31
A Convenient Notation
λ→
→
A
aAbA
λ|aAbA →
thearticle
aarticle
→
→
theaarticle |→
32
Linear Grammars
33
Linear Grammars
Grammars with
at most one variable at the right side
of a production
Examples:
λ→
→
→
A
aAbA
AbS
λ→
→
S
aSbS
34
A Non-Linear Grammar
bSaS
aSbS
S
SSS
→
→
→
→
λ
Grammar :G
)}()(:{)( wnwnwGL ba ==
35
Another Linear Grammar
Grammar :
AbB
aBA
AS
→
→
→
λ|
}0:{)( ≥= nbaGL nn
G
36
Right-Linear Grammars
All productions have form:
Example:
xBA →
xA →
or
aS
abSS
→
→
37
Left-Linear Grammars
All productions have form:
Example:
BxA →
aB
BAabA
AabS
→
→
→
|
xA →
or
38
Regular Grammars
39
Regular Grammars
A regular grammar is any
right-linear or left-linear grammar
Examples:
aS
abSS
→
→
aB
BAabA
AabS
→
→
→
|
1G 2G
40
Observation
Regular grammars generate regular languages
Examples:
aS
abSS
→
→
aabGL *)()( 1 =
aB
BAabA
AabS
→
→
→
|
*)()( 2 abaabGL =
1G
2G
41
Regular Grammars
Generate
Regular Languages
42
Theorem
Languages
Generated by
Regular Grammars
Regular
Languages=
43
Theorem - Part 1
Languages
Generated by
Regular Grammars
Regular
Languages
⊆
Any regular grammar generates
a regular language
44
Theorem - Part 2
Languages
Generated by
Regular Grammars
Regular
Languages
⊇
Any regular language is generated
by a regular grammar
45
Proof – Part 1
Languages
Generated by
Regular Grammars
Regular
Languages
⊆
The language generated by
any regular grammar is regular
)(GL
G
46
The case of Right-Linear Grammars
Let be a right-linear grammar
We will prove: is regular
Proof idea: We will construct NFA
with
G
)(GL
M
)()( GLML =
47
Grammar is right-linearG
Example:
aBbB
BaaA
BaAS
|
|
→
→
→
48
Construct NFA such that
every state is a grammar variable:
M
aBbB
BaaA
BaAS
|
|
→
→
→
S FV
A
B
special
final state
49
Add edges for each production:
S FV
A
B
a
aAS →
50
S FV
A
B
a
BaAS |→
λ
51
S FV
A
B
a
λ
BaaA
BaAS
→
→ |
a
a
52
S FV
A
B
a
λ
bBB
BaaA
BaAS
→
→
→ |
a
a
b
53
S FV
A
B
a
λ
abBB
BaaA
BaAS
|
|
→
→
→
a
a
b
a
54
aaabaaaabBaaaBaAS ⇒⇒⇒⇒
S FV
A
B
a
λ
a
a
b
a
55
S FV
A
B
a
λ
a
a
b
a
abBB
BaaA
BaAS
|
|
→
→
→
G
M GrammarNFA
abaaaab
GLML
**
)()(
+
==
56
In General
A right-linear grammar
has variables:
and productions:
G
,,, 210 VVV
jmi VaaaV 21→
mi aaaV 21→
or
57
We construct the NFA such that:
each variable corresponds to a node:
M
iV
0V
FV
1V
2V
3V
4V special
final state
58
For each production:
we add transitions and intermediate nodes
jmi VaaaV 21→
iV jV………1a 2a ma
59
For each production:
we add transitions and intermediate nodes
mi aaaV 21→
iV FV………1a 2a ma
60
Resulting NFA looks like this:M
0V
FV
1V
2V
3V
4V
1a
3a
3a
4a
8a
2a 4a
5a
9a
5a
9a
)()( MLGL =It holds that:
61
The case of Left-Linear Grammars
Let be a left-linear grammar
We will prove: is regular
Proof idea:
We will construct a right-linear
grammar with
G
)(GL
G′ R
GLGL )()( ′=
62
Since is left-linear grammar
the productions look like:
G
kaaBaA 21→
kaaaA 21→
63
Construct right-linear grammar G′
In :G kaaBaA 21→
In :G′ BaaaA k 12→
vBA →
BvA R
→
64
Construct right-linear grammar G′
In :G kaaaA 21→
In :G′ 12aaaA k →
vA →
R
vA →
65
It is easy to see that:
Since is right-linear, we have:
R
GLGL )()( ′=
)(GL ′ R
GL )( ′
G′
)(GL
Regular
Language
Regular
Language
Regular
Language
66
Proof - Part 2
Languages
Generated by
Regular Grammars
Regular
Languages
⊇
Any regular language is generated
by some regular grammar
L
G
67
Proof idea:
Let be the NFA with .
Construct from a regular grammar
such that
Any regular language is generated
by some regular grammar
L
G
M )(MLL =
M G
)()( GLML =
68
Since is regular
there is an NFA such that
L
M )(MLL =
Example:
a
b
a
bλ
*)*(* abbababL =
)(MLL =
M
1q 2q
3q
0q
69
Convert to a right-linear grammarM
a
b
a
bλ
M
0q 1q 2q
3q
10 aqq →
70
a
b
a
bλ
M
0q 1q 2q
3q
21
11
10
aqq
bqq
aqq
→
→
→
71
a
b
a
bλ
M
0q 1q 2q
3q
32
21
11
10
bqq
aqq
bqq
aqq
→
→
→
→
72
a
b
a
bλ
M
0q 1q 2q
3q
λ→
→
→
→
→
→
3
13
32
21
11
10
q
qq
bqq
aqq
bqq
aqq
G
LMLGL == )()(
73
In General
For any transition:
a
q p
Add production: apq →
variable terminal variable
74
For any final state: fq
Add production: λ→fq
75
Since is right-linear grammar
is also a regular grammar
with
G
G
LMLGL == )()(

More Related Content

What's hot

context free language
context free languagecontext free language
context free languagekhush_boo31
 
PUSH DOWN AUTOMATA VS TURING MACHINE
PUSH DOWN AUTOMATA VS TURING MACHINEPUSH DOWN AUTOMATA VS TURING MACHINE
PUSH DOWN AUTOMATA VS TURING MACHINEAbhishek Shivhare
 
CONTEXT FREE GRAMMAR
CONTEXT FREE GRAMMAR CONTEXT FREE GRAMMAR
CONTEXT FREE GRAMMAR Zahid Parvez
 
Context free langauges
Context free langaugesContext free langauges
Context free langaugessudhir sharma
 
Phttp://www.cw360ms.com/pmsurveyresults/index.aspda
Phttp://www.cw360ms.com/pmsurveyresults/index.aspdaPhttp://www.cw360ms.com/pmsurveyresults/index.aspda
Phttp://www.cw360ms.com/pmsurveyresults/index.aspdaHafeez Rehman
 
Simplification of cfg ppt
Simplification of cfg pptSimplification of cfg ppt
Simplification of cfg pptShiela Rani
 
CLaSH HIW 2014
CLaSH HIW 2014CLaSH HIW 2014
CLaSH HIW 2014baaijcpr
 
Context free grammars
Context free grammarsContext free grammars
Context free grammarsRonak Thakkar
 
Automata
AutomataAutomata
AutomataGaditek
 
1.7. eqivalence of nfa and dfa
1.7. eqivalence of nfa and dfa1.7. eqivalence of nfa and dfa
1.7. eqivalence of nfa and dfaSampath Kumar S
 

What's hot (12)

context free language
context free languagecontext free language
context free language
 
PUSH DOWN AUTOMATA VS TURING MACHINE
PUSH DOWN AUTOMATA VS TURING MACHINEPUSH DOWN AUTOMATA VS TURING MACHINE
PUSH DOWN AUTOMATA VS TURING MACHINE
 
CONTEXT FREE GRAMMAR
CONTEXT FREE GRAMMAR CONTEXT FREE GRAMMAR
CONTEXT FREE GRAMMAR
 
Context free langauges
Context free langaugesContext free langauges
Context free langauges
 
Phttp://www.cw360ms.com/pmsurveyresults/index.aspda
Phttp://www.cw360ms.com/pmsurveyresults/index.aspdaPhttp://www.cw360ms.com/pmsurveyresults/index.aspda
Phttp://www.cw360ms.com/pmsurveyresults/index.aspda
 
Gch6 l2
Gch6 l2Gch6 l2
Gch6 l2
 
Simplification of cfg ppt
Simplification of cfg pptSimplification of cfg ppt
Simplification of cfg ppt
 
L3 cfg
L3 cfgL3 cfg
L3 cfg
 
CLaSH HIW 2014
CLaSH HIW 2014CLaSH HIW 2014
CLaSH HIW 2014
 
Context free grammars
Context free grammarsContext free grammars
Context free grammars
 
Automata
AutomataAutomata
Automata
 
1.7. eqivalence of nfa and dfa
1.7. eqivalence of nfa and dfa1.7. eqivalence of nfa and dfa
1.7. eqivalence of nfa and dfa
 

Similar to Class5

Hw2 2017-spring
Hw2 2017-springHw2 2017-spring
Hw2 2017-spring奕安 陳
 
Natural Language Processing - Writing Grammar
Natural Language Processing - Writing GrammarNatural Language Processing - Writing Grammar
Natural Language Processing - Writing GrammarJasmine Peniel
 
How-to-convert-a-left-linear-grammar-to-a-right-linear-grammar.pptx
How-to-convert-a-left-linear-grammar-to-a-right-linear-grammar.pptxHow-to-convert-a-left-linear-grammar-to-a-right-linear-grammar.pptx
How-to-convert-a-left-linear-grammar-to-a-right-linear-grammar.pptxishawrb
 
CNF & Leftmost Derivation - Theory of Computation
CNF & Leftmost Derivation - Theory of ComputationCNF & Leftmost Derivation - Theory of Computation
CNF & Leftmost Derivation - Theory of ComputationDrishti Bhalla
 
Open course(programming languages) 20150211
Open course(programming languages) 20150211Open course(programming languages) 20150211
Open course(programming languages) 20150211codin9cafe
 
Open course(programming languages) 20150211
Open course(programming languages) 20150211Open course(programming languages) 20150211
Open course(programming languages) 20150211JangChulho
 
Context Free Languages by S.Mandal-1.ppt
Context Free Languages by S.Mandal-1.pptContext Free Languages by S.Mandal-1.ppt
Context Free Languages by S.Mandal-1.ppt1sonalishipu
 
Simplifies and normal forms - Theory of Computation
Simplifies and normal forms - Theory of ComputationSimplifies and normal forms - Theory of Computation
Simplifies and normal forms - Theory of ComputationNikhil Pandit
 
Syntactic analysis in NLP
Syntactic analysis in NLPSyntactic analysis in NLP
Syntactic analysis in NLPkartikaVashisht
 
Theory of competition topic simplification of cfg, normal form of FG.pptx
Theory of competition topic simplification of cfg, normal form of FG.pptxTheory of competition topic simplification of cfg, normal form of FG.pptx
Theory of competition topic simplification of cfg, normal form of FG.pptxJisock
 
Simplifiaction of grammar
Simplifiaction of grammarSimplifiaction of grammar
Simplifiaction of grammarlavishka_anuj
 
Context Free Grammar
Context Free GrammarContext Free Grammar
Context Free GrammarniveditJain
 
5045.-Compiler-Design-Left-Recursion-and-Left-Factoring.pptx
5045.-Compiler-Design-Left-Recursion-and-Left-Factoring.pptx5045.-Compiler-Design-Left-Recursion-and-Left-Factoring.pptx
5045.-Compiler-Design-Left-Recursion-and-Left-Factoring.pptxShubhamKumar483645
 
context free grammars automata therory and compiler design
context free grammars automata therory and compiler designcontext free grammars automata therory and compiler design
context free grammars automata therory and compiler designsunitachalageri1
 

Similar to Class5 (20)

Hw2 2017-spring
Hw2 2017-springHw2 2017-spring
Hw2 2017-spring
 
Natural Language Processing - Writing Grammar
Natural Language Processing - Writing GrammarNatural Language Processing - Writing Grammar
Natural Language Processing - Writing Grammar
 
How-to-convert-a-left-linear-grammar-to-a-right-linear-grammar.pptx
How-to-convert-a-left-linear-grammar-to-a-right-linear-grammar.pptxHow-to-convert-a-left-linear-grammar-to-a-right-linear-grammar.pptx
How-to-convert-a-left-linear-grammar-to-a-right-linear-grammar.pptx
 
CNF & Leftmost Derivation - Theory of Computation
CNF & Leftmost Derivation - Theory of ComputationCNF & Leftmost Derivation - Theory of Computation
CNF & Leftmost Derivation - Theory of Computation
 
Open course(programming languages) 20150211
Open course(programming languages) 20150211Open course(programming languages) 20150211
Open course(programming languages) 20150211
 
Open course(programming languages) 20150211
Open course(programming languages) 20150211Open course(programming languages) 20150211
Open course(programming languages) 20150211
 
Context Free Languages by S.Mandal-1.ppt
Context Free Languages by S.Mandal-1.pptContext Free Languages by S.Mandal-1.ppt
Context Free Languages by S.Mandal-1.ppt
 
Grammar
GrammarGrammar
Grammar
 
Simplifies and normal forms - Theory of Computation
Simplifies and normal forms - Theory of ComputationSimplifies and normal forms - Theory of Computation
Simplifies and normal forms - Theory of Computation
 
Lex analysis
Lex analysisLex analysis
Lex analysis
 
Syntactic analysis in NLP
Syntactic analysis in NLPSyntactic analysis in NLP
Syntactic analysis in NLP
 
Theory of competition topic simplification of cfg, normal form of FG.pptx
Theory of competition topic simplification of cfg, normal form of FG.pptxTheory of competition topic simplification of cfg, normal form of FG.pptx
Theory of competition topic simplification of cfg, normal form of FG.pptx
 
Ch02
Ch02Ch02
Ch02
 
PARSER .pptx
PARSER .pptxPARSER .pptx
PARSER .pptx
 
Simplifiaction of grammar
Simplifiaction of grammarSimplifiaction of grammar
Simplifiaction of grammar
 
Ch03
Ch03Ch03
Ch03
 
Context Free Grammar
Context Free GrammarContext Free Grammar
Context Free Grammar
 
5045.-Compiler-Design-Left-Recursion-and-Left-Factoring.pptx
5045.-Compiler-Design-Left-Recursion-and-Left-Factoring.pptx5045.-Compiler-Design-Left-Recursion-and-Left-Factoring.pptx
5045.-Compiler-Design-Left-Recursion-and-Left-Factoring.pptx
 
context free grammars automata therory and compiler design
context free grammars automata therory and compiler designcontext free grammars automata therory and compiler design
context free grammars automata therory and compiler design
 
2020CSC4331_Lecture6_1.pdf
2020CSC4331_Lecture6_1.pdf2020CSC4331_Lecture6_1.pdf
2020CSC4331_Lecture6_1.pdf
 

Recently uploaded

ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...jaredbarbolino94
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxabhijeetpadhi001
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 

Recently uploaded (20)

OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptx
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 

Class5