Recent activity by pradeepdeepu

0 answers
2
0 answers
4
0 answers
5
Consider a stack and we wish to perform an operation StackDelete() in which we wish to delete all the elements of the stack .What is the worst case time complexity of doi...
1 answer
6
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
1 answer
7
0 answers
8
2 answers
9
0 answers
10
I think answer is option A. But given option B.
0 answers
11
If L=Σ* then is this regular language finite or infinite??
2 answers
12
1 answer
14
Which of the following protocols does not ensure conflict serializability and safety from deadlocks?Graph based protocolsTwo-phase locking protocolTime-stamp ordering pro...
1 answer
15
First {a} =?First{a, b} =?First{a, b, c} =?First {a, $} =?Where a, b, c are terminals.
1 answer
18
Which of the following is/are stateful application layer protocol?(i) HTTP(ii) FTP(iii) TCP(iv) POP3
1 answer
20
Here , Number of backtracks are 3 or 4 ? I am getting 3 but given answer is 4. Please explain.
1 answer
22
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...
6 answers
23