0 votes
2
Consider the grammar below:G: S → AaBCBC → εaB →aaBA → εWhich of the following is TRUE?( Marks: -0.33 ) G is Type 2 G is Type 3 G is Type 1 G is Type 0
0 votes
3
0 votes
4
0 votes
5
0 votes
7
First {a} =?First{a, b} =?First{a, b, c} =?First {a, $} =?Where a, b, c are terminals.
2 votes
10
Which of the following protocols does not ensure conflict serializability and safety from deadlocks?Graph based protocolsTwo-phase locking protocolTime-stamp ordering pro...
0 votes
12
Which of the following is/are stateful application layer protocol?(i) HTTP(ii) FTP(iii) TCP(iv) POP3
1 votes
13
Here , Number of backtracks are 3 or 4 ? I am getting 3 but given answer is 4. Please explain.
1 votes
15
What is the output generated by this code?main(){ int i=0; printf("%d %d %d %d %d %d %d", i++, ++i, i, i++, i, ++i, i++); }4 4 3 2 2 2 04 5 5 2 5 5 00 2 2 2 2 4 4Compiler...
1 votes
16
To evaluate an expression without any embedded function callsOne stack is enoughTwo stacks are neededAs many stacks as the height of the expression tree are neededA Turin...