3 votes
1 answer
42
Need some clarification regarding this answer Do comment please:
0 votes
1 answer
43
0 votes
0 answers
44
Any other derivation possible?
0 votes
2 answers
45
Given answer is 3. I am getting Two entries.Check it once.
0 votes
1 answer
46
Grammar :E->T+E/TT->id/id*T/(E)Is grammar LL(2)?
0 votes
0 answers
47
Here are two mealy machine that outputs "a" if "01" is encountered in the string .Can anyone tell the diffrerence among two?
2 votes
1 answer
48
How computation actually occurs in these type of questions?For ex:If I declare a=10,b=20and pass them f(a-b,a*2,b-a);Where f has signature like f(int *p,int *q,int *r).Ho...
0 votes
0 answers
50
It took me a while to solve, any hack on this?
0 votes
2 answers
51
This is true that at every router the value of TTL is decremented by one but does that actually mean that other fields in the header are also recomputed?
3 votes
0 answers
52
Illustration of this piece of code :
1 votes
1 answer
53
What is the upper bound of n! Please provide a logical deduction to prove that its $n^{n}$.
1 votes
1 answer
54
No of relation over set of 4 elements such that (x,y) belongs to S implies (x=y)?Is it asking for reflexive relation?
2 votes
0 answers
55
A one to one function from infinite set A to itself is one to one or not?A one to one function from finite set A to itself is one to one or not?Please suggest an approach...
1 votes
1 answer
56
Group of students 100 students studying subject A,100 Subject B, 100 Subject C, 20 studying A&b, 40 B&C, and 60 A&C210 students are only studying one subject?Question : h...
1 votes
1 answer
57
Set A contains n elements.A largest relation on A which is both Symmetric and Antisymmetric?
1 votes
1 answer
58
#include<stdio.h>void print1(void){static int x=10;x+=5;printf("%d",x);}void print2(void){static int x;x=10;x+=5;printf("%d",x);}int main(){print1();print1();print2();pri...