SlideShare a Scribd company logo
1 of 58
UNIT IV
PROPERTIES OF CONTEXT
FREE LANGUAGES
Mrs.D.Jena Catherine Bel,
Assistant Professor, CSE,
Velammal Engineering College
UNIT IV
PROPERTIES OF CONTEXT FREE
LANGUAGES
Normal Forms for CFG – Pumping Lemma for CFL – Closure Properties of
CFL – Turing Machines – Programming Techniques for TM.
CFG simplification
Simplification essentially comprises of the following steps −
• Removal of Null Productions
• Removal of Unit Productions
• Removal of Useless Symbols
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
3
Removal of unit production
Any production rule in the form A → B where A, B ∈ Non-
terminal is called unit production..
Removal Procedure −
• Step 1 − To remove A → B, add production A → x to the
grammar rule whenever B → x occurs in the grammar. [x ∈
Terminal, x can be Null]
• Step 2 − Delete A → B from the grammar.
• Step 3 − Repeat from step 1 until all unit productions are
removed.
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
4
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
5
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
6
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
7
Removal of null production
In a CFG, a non-terminal symbol ‘A’ is a nullable variable if there
is a production A → ε or there is a derivation that starts at A and
finally ends up with ε: A → .......… → ε
Removal Procedure
• Step 1 − Find out nullable non-terminal variables which derive
ε.
• Step 2 − For each production A → a, construct all productions
A → x where x is obtained from ‘a’ by removing one or
multiple non-terminals from Step 1.
• Step 3 − Combine the original productions with the result of
step 2 and remove ε - productions.
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
8
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
9
Removal of useless symbols
• Identifying Non generating symbol
• Identifying Non reachable symbol
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
10
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
11
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
12
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
13
CNF - Chomsky Normal Form
A  BC | a
V  VV | T
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
14
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
15
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
16
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
17
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
18
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
19
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
20
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
21
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
22
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
23
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
24
mm
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
25
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
26
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
27
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
28
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
29
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
30
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
31
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
32
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
33
Turing Machine
Mrs.D.Jena
Catherine
Bel,
AP/CSE,
VEC
34
What
• A Turing machine is a theoretical computing /
hypothetical machine invented by Alan Turing
35
Formal Definition
• A Turing Machine is a 7-tuple M = <Q, Γ, b, Σ, δ, q0,
F> where:
• Q is a finite, non-empty set of states
• Γ is a finite, non-empty set of the tape
alphabet/symbols
• b ∈ Γ is the blank symbol
• Σ ⊆ Γ - {b} is the set of input symbols
• q0 ∈ Q is the initial state
• F ⊆ Q is the set of final (accepting) states
• δ: Q × Γ → Q × Γ × D 36
Transition Function
• It tells us how the machine gets one step to the next.
δ(q, X)=(p,Y,D)
• When the machine is in a certain state q є Q and the
head is currently scanning X in the tape, then the
machine
1. replaces the symbol X by Y on the tape
2. goes to state p, and
3. the tape head moves one cell to the left or right
based on D.
37
38
Instantaneous description
• The ID of a TM capture what is going out at any moment i.e. it
contains all the information to exactly capture the "current
state of the computations".
• It contains the following:
• The content of the tape
• The location of the tape head
• The machine’s internal state
X1X2…………..Xi-1qXiXi+1……..Xn
39
X1X2…………..Xi-1qXiXi+1……..Xn
δ(q, Xi)=(p,Y,L)
X1X2…………..pXi-1YXi+1……..Xn
40
41
X1X2…………..Xi-1qXiXi+1……..Xn
δ(q, Xi)=(p,Y,R)
X1X2…………..Xi-1YpXi+1……..Xn
Language of TM
Let the M = <Q, Γ, b, Σ, δ, q0, F> Then L(M) is the set of
strings w in ∑* such that
For some state p in F and any tape strings α and β
42
Examples
• Odd no of 0s
• 0n1n
• anbncn
• Addition
• Proper subtraction
43
Odd no of 0s
• Let M be the turing machine
• Let q1 be the initial state.
• If M is in q1; on scanning a, it enters the state q2 and
writes B (blank), move Right.
• If M is in q2; on scanning a, it enters the state q1 and
writes B (blank), move Right.
• If M is in q2 ; on scanning B, it enters the state q3 and writes B,
move Left and halt
44
Odd no of 0s
q1aaa
⊢ Bq2aa
⊢ BBq1a
⊢ BBBq2
⊢ BBq3B
45
0n1n
000111
X00111
X00Y11
XX0Y11
XX0YY1
XXXYY1
XXXYYY
46
anbncn
aabbcc
Xabbcc
XaYbcc
XaYbZc
XXYbZc
XXYYZc
XXYYZZ
47
Addition
111011
111111
11111B
48
TM for L = (wwR | w є (0/1)*} or
even length palindrome.
100001
B00001
B0000B
BB000B
BB00BB
BBB0BB
BBBBBB
49
Proper Subtraction
0000100
B000100
B000110
BB00110
BB00111
BBB0111
BBB011B
BBB01BB
BBB0BBB
BB00BBB
50
00100
B0100
B0110
BB110
BB111
BBB11
BBBB1
BBBBB
001000
B01000
B01100
BB1100
BB1110
BBB110
BBBB10
BBBBB0
BBBBBB
Programming Techniques
• Storage in state
• Mutliple tracks
• Subroutines
51
Storage in state
• State is considered as tuples
52
Language (01* +10*)
• δ([qo, B], a) = ([ql,a],a,R) for a= 0 or a= 1.
• δ([ql,a],a’) = ([ql,a], a’,R) where a’ is complement of a
• δ([ql,a],B) = ([q2,B], B,R)
53
δ([qo, B], 0) = ([ql,0],0,R)
δ([qo, B], 1) = ([ql,1],1,R)
δ([ql,0],1) = ([ql,0], 1,R)
δ([ql,1],0) = ([ql,1], 1,R)
δ([ql,0],B) = ([q2,B], B,R)
δ([ql,1],B) = ([q2,B], B,R)
Multiple tracks
54
L(w) = {wcw|w is in (0 + 1)+}
55
56
B B B B B B B B B
B
B 0 1 0 c 0 1 0 B
B * B B B B B B B
0
B 0 1 0 c 0 1 0 B
B * B B B * B B B
B
B 0 1 0 c 0 1 0 B
B * * B B * B B B
1
B 0 1 0 c 0 1 0 B
B * * B B * * B B
B
B 0 1 0 c 0 1 0 B
B * * * B * * B B
0
B 0 1 0 c 0 1 0 B
B * * * B * * * B
B
B 0 1 0 c 0 1 0 B
Subroutine 0001001
B001001
B001X01
B001X010
B001XX10
B001XX100
B001X0100
B00100100
BB0100100
BB01X0100
BB01X01000
BB01XX1000
BB01XX10000
BB01X010000
BB010010000
BBB10010000
BBB1X010000
57
BBB1X0100000
BBB1XX100000
BBB1XX1000000
BBB1X01000000
BBB1001000000
BBBB001000000
BBBBB01000000
BBBBBB1000000
BBBBBBB000000
Multi tapes
58

More Related Content

What's hot

Formal Languages and Automata Theory Unit 1
Formal Languages and Automata Theory Unit 1Formal Languages and Automata Theory Unit 1
Formal Languages and Automata Theory Unit 1Srimatre K
 
1.3.2 non deterministic finite automaton
1.3.2 non deterministic finite automaton1.3.2 non deterministic finite automaton
1.3.2 non deterministic finite automatonSampath Kumar S
 
simple problem to convert NFA with epsilon to without epsilon
simple problem to convert NFA with epsilon to without epsilonsimple problem to convert NFA with epsilon to without epsilon
simple problem to convert NFA with epsilon to without epsilonkanikkk
 
Lecture 3 RE NFA DFA
Lecture 3   RE NFA DFA Lecture 3   RE NFA DFA
Lecture 3 RE NFA DFA Rebaz Najeeb
 
Automata theory - Push Down Automata (PDA)
Automata theory - Push Down Automata (PDA)Automata theory - Push Down Automata (PDA)
Automata theory - Push Down Automata (PDA)Akila Krishnamoorthy
 
NFA DFA Equivalence theorem
NFA DFA Equivalence theorem NFA DFA Equivalence theorem
NFA DFA Equivalence theorem niveditJain
 
Minimization of DFA
Minimization of DFAMinimization of DFA
Minimization of DFAkunj desai
 
Finite automata
Finite automataFinite automata
Finite automataPusp Sunar
 
1.3.1 deterministic finite automaton
1.3.1 deterministic finite automaton1.3.1 deterministic finite automaton
1.3.1 deterministic finite automatonSampath Kumar S
 
Microprocessor Week 7: Branch Instruction
Microprocessor Week 7: Branch InstructionMicroprocessor Week 7: Branch Instruction
Microprocessor Week 7: Branch InstructionArkhom Jodtang
 

What's hot (20)

Finite automata
Finite automataFinite automata
Finite automata
 
Nfa vs dfa
Nfa vs dfaNfa vs dfa
Nfa vs dfa
 
Formal Languages and Automata Theory Unit 1
Formal Languages and Automata Theory Unit 1Formal Languages and Automata Theory Unit 1
Formal Languages and Automata Theory Unit 1
 
Hima1
Hima1Hima1
Hima1
 
1.3.2 non deterministic finite automaton
1.3.2 non deterministic finite automaton1.3.2 non deterministic finite automaton
1.3.2 non deterministic finite automaton
 
Compiler Design Unit 3
Compiler Design Unit 3Compiler Design Unit 3
Compiler Design Unit 3
 
Automata Theory - Turing machine
Automata Theory - Turing machineAutomata Theory - Turing machine
Automata Theory - Turing machine
 
simple problem to convert NFA with epsilon to without epsilon
simple problem to convert NFA with epsilon to without epsilonsimple problem to convert NFA with epsilon to without epsilon
simple problem to convert NFA with epsilon to without epsilon
 
Lecture 3 RE NFA DFA
Lecture 3   RE NFA DFA Lecture 3   RE NFA DFA
Lecture 3 RE NFA DFA
 
Automata theory - Push Down Automata (PDA)
Automata theory - Push Down Automata (PDA)Automata theory - Push Down Automata (PDA)
Automata theory - Push Down Automata (PDA)
 
Finite automata
Finite automataFinite automata
Finite automata
 
NFA DFA Equivalence theorem
NFA DFA Equivalence theorem NFA DFA Equivalence theorem
NFA DFA Equivalence theorem
 
Minimization of DFA
Minimization of DFAMinimization of DFA
Minimization of DFA
 
Ch2 finite automaton
Ch2 finite automatonCh2 finite automaton
Ch2 finite automaton
 
DFA Minimization
DFA MinimizationDFA Minimization
DFA Minimization
 
Finite automata
Finite automataFinite automata
Finite automata
 
Nfa egs
Nfa egsNfa egs
Nfa egs
 
1.3.1 deterministic finite automaton
1.3.1 deterministic finite automaton1.3.1 deterministic finite automaton
1.3.1 deterministic finite automaton
 
Compiler Design Unit 2
Compiler Design Unit 2Compiler Design Unit 2
Compiler Design Unit 2
 
Microprocessor Week 7: Branch Instruction
Microprocessor Week 7: Branch InstructionMicroprocessor Week 7: Branch Instruction
Microprocessor Week 7: Branch Instruction
 

Similar to Theory of Computation Unit 4

Computer Organization1CS1400Feng JiangBoolean al.docx
Computer Organization1CS1400Feng JiangBoolean al.docxComputer Organization1CS1400Feng JiangBoolean al.docx
Computer Organization1CS1400Feng JiangBoolean al.docxladonnacamplin
 
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptxSequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptxAhmedAlAfandi5
 
Sequential Circuits-ppt_2.pdf
Sequential Circuits-ppt_2.pdfSequential Circuits-ppt_2.pdf
Sequential Circuits-ppt_2.pdfimadshaheen2
 
lecture25_algorithmic_state_machines.ppt
lecture25_algorithmic_state_machines.pptlecture25_algorithmic_state_machines.ppt
lecture25_algorithmic_state_machines.pptssuser2ae35a
 
Sequential logic circuit
Sequential logic circuitSequential logic circuit
Sequential logic circuitAswiniT3
 
1. finite_automata_new.ppt
1. finite_automata_new.ppt1. finite_automata_new.ppt
1. finite_automata_new.pptSanthoshS508159
 
BEEE FLIP FLOP & REGISTERS
BEEE FLIP FLOP & REGISTERSBEEE FLIP FLOP & REGISTERS
BEEE FLIP FLOP & REGISTERSVinithShenoy
 
Moore Mealy Machine Conversion
Moore Mealy Machine Conversion Moore Mealy Machine Conversion
Moore Mealy Machine Conversion Aiman Hafeez
 
CH3_Gate Level Minimization.pdf
CH3_Gate Level Minimization.pdfCH3_Gate Level Minimization.pdf
CH3_Gate Level Minimization.pdfSanjoySana2
 
Theory of automata
Theory of automataTheory of automata
Theory of automataArslan905905
 

Similar to Theory of Computation Unit 4 (20)

TuringMachines.ppt
TuringMachines.pptTuringMachines.ppt
TuringMachines.ppt
 
9920Lec12 FSM.ppt
9920Lec12 FSM.ppt9920Lec12 FSM.ppt
9920Lec12 FSM.ppt
 
TuringMachines.pdf
TuringMachines.pdfTuringMachines.pdf
TuringMachines.pdf
 
Computer Organization1CS1400Feng JiangBoolean al.docx
Computer Organization1CS1400Feng JiangBoolean al.docxComputer Organization1CS1400Feng JiangBoolean al.docx
Computer Organization1CS1400Feng JiangBoolean al.docx
 
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptxSequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
Sequential Circuitsdddddddddddddddddsssssssssss-ppt.pptx
 
Sequential Circuits-ppt_2.pdf
Sequential Circuits-ppt_2.pdfSequential Circuits-ppt_2.pdf
Sequential Circuits-ppt_2.pdf
 
lecture25_algorithmic_state_machines.ppt
lecture25_algorithmic_state_machines.pptlecture25_algorithmic_state_machines.ppt
lecture25_algorithmic_state_machines.ppt
 
Lec 25 26_27
Lec 25 26_27Lec 25 26_27
Lec 25 26_27
 
Sequential logic circuit
Sequential logic circuitSequential logic circuit
Sequential logic circuit
 
1. finite_automata_new.ppt
1. finite_automata_new.ppt1. finite_automata_new.ppt
1. finite_automata_new.ppt
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
 
ANALOG AND DIGITAL ELECTRONICS unit 5
ANALOG AND DIGITAL ELECTRONICS unit 5ANALOG AND DIGITAL ELECTRONICS unit 5
ANALOG AND DIGITAL ELECTRONICS unit 5
 
BEEE FLIP FLOP & REGISTERS
BEEE FLIP FLOP & REGISTERSBEEE FLIP FLOP & REGISTERS
BEEE FLIP FLOP & REGISTERS
 
1542 inner products
1542 inner products1542 inner products
1542 inner products
 
Turing machine
Turing machineTuring machine
Turing machine
 
Moore Mealy Machine Conversion
Moore Mealy Machine Conversion Moore Mealy Machine Conversion
Moore Mealy Machine Conversion
 
Turing machines
Turing machinesTuring machines
Turing machines
 
CH3_Gate Level Minimization.pdf
CH3_Gate Level Minimization.pdfCH3_Gate Level Minimization.pdf
CH3_Gate Level Minimization.pdf
 
Pda
PdaPda
Pda
 
Theory of automata
Theory of automataTheory of automata
Theory of automata
 

More from Jena Catherine Bel D

More from Jena Catherine Bel D (6)

Compiler Design Unit 4
Compiler Design Unit 4Compiler Design Unit 4
Compiler Design Unit 4
 
Compiler Design Unit 1
Compiler Design Unit 1Compiler Design Unit 1
Compiler Design Unit 1
 
Theory of Computation Unit 5
Theory of Computation Unit 5Theory of Computation Unit 5
Theory of Computation Unit 5
 
Theory of Computation Unit 3
Theory of Computation Unit 3Theory of Computation Unit 3
Theory of Computation Unit 3
 
Theory of Computation Unit 2
Theory of Computation Unit 2Theory of Computation Unit 2
Theory of Computation Unit 2
 
Theory of Computation Unit 1
Theory of Computation Unit 1Theory of Computation Unit 1
Theory of Computation Unit 1
 

Recently uploaded

Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacingjaychoudhary37
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 

Recently uploaded (20)

Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacing
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 

Theory of Computation Unit 4