0 votes
0 answers
1
I am getting A,C and D but the answer given is A,C.
0 votes
1 answer
2
The minimum number of productions required to produce a language consisting of palindrome strings over ∑={a,b} with a single variable is______.
0 votes
2 answers
5
How to calculate the sizeof(arr2)?
0 votes
1 answer
7
We are having 4 sorted sub-lists of size n/4, What is the time complexity to merge them in a single sorted list?
0 votes
0 answers
8
3 votes
1 answer
10
Design predictive parsing table for below grammar.How many multiple entries are there?S → AA | abA → Bd | εB → SB | d
0 votes
1 answer
11
What is the difference between Integration and Summation?Which one produces a greater value in the same range?
0 votes
1 answer
12
If L1 = {a^nb^nc^md^m | n,m>=0}L2 = {a^nb^n | n>=0}L3 = {c^md^m | m>=0}Then L1 – L2.L3(concatenation) is?RegularCSLCFLREL(recursive enumerable)
0 votes
3 answers
13
Suppose you have a singly Linked List of n nodes and you want to insert a node in the middle of the Linked List, At least how many pointers do you need to handle to perfo...