

InterviewSolution
Saved Bookmarks
1. |
Which of the following automata takes stack as auxiliary storage?(a) Finite automata(b) Push down automata(c) Turing machine(d) All of the mentionedI have been asked this question in a national level competition.I want to ask this question from PDA-acceptance by Empty Stack in portion Push Down Automata of Automata Theory |
Answer» RIGHT choice is (b) PUSH down automata For explanation: Pushdown AUTOMATON uses stack as an auxiliary storage for its operations. Turing machines USE QUEUE for the same. |
|