7 votes
1
0 votes
2
S - AS | bA - SA | aFind First and Follow set for folowing grammar
1 votes
3
0 votes
4
0 votes
7
A grammar that has not any epsilon production and also free from unit productions.The maximum number of reduce moves that can be taken during bottom up evaluation of 25 t...
0 votes
8
What should be the approach to solve such question?
1 votes
9
0 votes
12
S->Aa | Bc A->a B->a1. Is the above grammer left factored ?? If not ,then do left factoring on it ??2. Is above grammer deterministic ?? 3. Is every left factored...
2 votes
13
1 votes
14
How many minimum number of tables required to represent a Department entity which having two multi valued attributes phone and office?
1 votes
15
A host in a subnet has the IP address 130.83.126.10. How many hosts can be addressed in network?Here subnet mask is not given .please explain brieflly.
2 votes
16
Q1 What are necessary and what are sufficient conditions for Deadlock?Q2 What is the difference between deadlock preventions, deadlock avoidance, and deadlock detection?
0 votes
18
Can anyone explain 2 level paging in detail and multi-level paging?
1 votes
19
What is the difference between procedural query language and non-procedural query language? Why Relation algebra is called procedural and TRC is called non-procedural?
0 votes
20
if any production of given grammar isA → ε {A.v = 0}then A.v is ?a) inherited attributeb) synthesized attribute
0 votes
21
How to get the second string,i.e., 6*2/1-2*3 from the given grammar?
1 votes
22
Can someone explain these terms clearly these terms with examples?Attribute GrammarSynthesized attributesInherited attributesL and S Attributes
2 votes
23
Is epsilon(empty string) a pallindrome?
3 votes
24
#include <stdio.h int main(void) { int a=5, b=10; printf("%d%d",a,b); make_it(b,a,a+b); printf("%d%d",a,b); return 0; } int make_it(int x,int y, int z){ x*=y+z; y=x<<1; z...