Theory of Automata 20 Most Important Questions
Theory of Automata 20 Most Important Questions
20 Important Question
2
Construct a minimum state automaton equivalent to DFA whose transition table is defined by the transition table. q0 is the initial
state and q3 is the final state.
Explain about derivation and parse trees? Construct the string 0100110 from the Leftmost and Rightmost derivation. S0S/1AA
10
A0/1A/0B B1/0BB
Write the procedure and Eliminate left recursion from the following Grammar.
EE+T/T
11
TT*F/F
F(E)/id
Convert PDA to CFG. PDA is given by P = ({p,q}, {0,1}, {X,Z}, δ, q, Z)), Transition function δ is defined by
δ(q, 1, Z) = {(q, XZ)}
δ(q, 1, X) = {(q, XX)}
17
δ(q, H, X) = {(q, H)}
δ(q, 0, X) = {(p, X)}
δ(p, 1, X) = {(p, H)}
18 Construct a Turing machine that recognizes the language L={anbn, n>1}. Show an ID for the string ‘aabb’ with tape symbols.
19 Construct a Turing machine that recognizes the language anbncn.
20 Explain Universal turing machine. Prove that Halting problem is undecidable.
21 Write the short notes on recursive languages and recursive enumerable languages.