Recent activity by ashutoshaay26

3 answers
5
The maximum number of reduce moves that can be taken by a bottom-up parser with no epsilon and unit productions to parse a string of length 3 tokens is ____ ?
7 answers
6
The recurrence equation$ T(1) = 1$$T(n) = 2T(n-1) + n, n \geq 2$evaluates to$2^{n+1} - n - 2$$2^n - n$$2^{n+1} - 2n - 2$$2^n + n $
2 answers
7
How to construct NFA with even number of a's and even no of b's??
2 answers
8
S = { <M | M is a DFA that accepts some palindrome }. Then what will be S -a) Turing recognizableb) decidable c) undecidabled) none of these
2 answers
9
Give a strategy to sort four given distinct integers $a, b, c, d$ in increasing order that minimizes the number of pairwise comparisons needed to sort any permutation of ...
1 answer
11
What is main difference between Deterministic Push down automata and simple Push down automata ?