Recent questions and answers

1 votes
3 answers
4
Which of the following regular expression represent the set of all the strings not containing $100$ as a substring ?$0^*(1^*0)^*$$0^*1010^*$$0^*1^*01^*$$0^*(10+1)^*$
2 votes
3 answers
8
0 votes
1 answer
9
2 votes
2 answers
12
0 votes
2 answers
13
2 votes
4 answers
16
Int main (){fork();printf("a");fork();printf("b");return 0;}How many distinct outputs are possible of above code? And also give outputs
0 votes
0 answers
17
How can i see my result report and rsponse after attempting test of Gateoverflow test series ?
0 votes
1 answer
19
0 votes
1 answer
21
A person turns 6 times left, 7 times right and again turns 2 times left. If he finds himself in south direction, then find initial direction
0 votes
1 answer
22
The total storage capacity of a floppy disk having $80$ tracks and storing $128$ bytes/sector is $163,840$ bytes. How many sectors does this disk have?$2^{7}$$2048$$4 \ma...
0 votes
0 answers
32
what's the condition to draw PDA for a^(2j+1)b^j such that j>=1.Since the language L={aaab,aaaaabb,aaaaaaabbb,.......}.Is pda possible?
0 votes
0 answers
35
2 votes
1 answer
36
Consider the following function:int arc(int i, int j){if(i<2) return j+2;else if(j<2) return arc(i-1, 1);else return arc(i-1, arc(i, j-2));}The value returned by arc(2, 6...
0 votes
1 answer
37
Consider the following function:int arc(int i, int j){if(i<2) return j+2;else if(j<2) return arc(i-1, 1);else return arc(i-1, arc(i, j-2));}The value returned by arc(2, 6...
0 votes
2 answers
38
0 votes
2 answers
40
To see more, click for the full list of questions or popular tags.