0 votes
1 answer
2
A relational schema R with attributes (ABCDEFG).It is known that D never appears on RHS of any FD.How many different possibilities are there for what a Candidate key of R...
6 votes
1 answer
3
A binary min-heap contains keys 1,2,3,4.....2047,2048What is smallest key that can be at leaf node.??
1 votes
1 answer
6
L1 = {a^nb^nC^n | n>=0}L2 = {a^nb^mc^k | k=m+n , n,m>=0}L1.(L2)* = ??
0 votes
2 answers
7
a=4 and b=3printf("%d",a+++b);output.??My doubt is that we will read from left as a++ or as ++b.
3 votes
1 answer
8
int j=0; for(i=0;i<n;i++) { for(i=0;i<2n;i++) { while(j<n) { j++; } } }time complexity.?a.$O(n^{2})$ b.$O(n^{4})$ c.$O(n^{3})$ ...
0 votes
2 answers
9
An umambiguous grammar has same right most and left most derivation>??True or false.?
1 votes
1 answer
10
T(n) = T(n/4) + T(3n/4) + n if n>1 = 1 if n =1T(n) = ??
0 votes
0 answers
11
Assume bit error of 2*(10^-4).What maximum size block is possible if probability that a block containing an error is to be no longer than 10^-1 ?
0 votes
1 answer
12
for n>=0 , if f(n)<g(n) and h(n)<g(n) . How many of the following are false. ?1. f(n) is O(h(n)).2.f(n) is not O(g(n)).3.f(n)+h(n) is O(g(n)).4.g(n) is not O(f(n)).5.f(n)...
2 votes
3 answers
15
Given the sequence 010202010 is generated from a sequential circuit of n flip-flops. And these flip-flops generate the sequence respectively. What is the minimum value of...
1 votes
1 answer
16
E - E+T/TT - T*F/FF - id is it LR(1).?
0 votes
1 answer
18
If the set of all words over alphabet S is countable thenAny language over S must be finite.at least one language over must be uncountable.any language over S is countabl...
0 votes
1 answer
19
An NFA has 11 states of which 5 are final .If we convert this NFA into DFA atmost how many states can be final states ?
0 votes
1 answer
20
True or false1. b*a* intersection a*b* = a* union b*2. If L is regular, the minimum state DFA for both L and ~L(complement) have same number of states.