5 answers
1
Consider R(A,B,C,D,E,F,G) be a relational schema with the following functional dependencies:AC->G, D->EG, BC->D, CG->BD, ACD->B, CE->AGThe number of different minimal cov...
2 answers
8
The grammar $ S \to aSa \mid bS \mid c$ is LL(1) but not LR(1)LR(1) but not LL(1)Both LL(1) and LR(1)Neither LL(1) nor LR(1)
2 answers
17
int i=0; char *a = "abcde\0efgh"; while(a[++i]) printf("%d",*++a - 'a');the output of the above c code segment?
10 answers
18
A system has $6$ identical resources and $N$ processes competing for them. Each process can request at most $2$ requests. Which one of the following values of $N$ could l...
2 answers
19
While switching context from process A to process B, operating system does not change the address translation table.why is this statement false give explanation