0 votes
62
Draw the Wave time diagram for the following counter and what is the mod value of the counter?Assume all J, k are attached to logic 1.
0 votes
63
1.Can any one tell me few examples of "new" and "ready" process?2.What kind of process "a.out" is? Is it a new process or just a program on secondary memory?
0 votes
64
1 votes
65
What is ∅ U ∅* ?a) ∅b) ϵc) Both a and b can be answerd) Neither a nor b
3 votes
66
void foo(int*); int main() { int i = 10; foo((&i)++); } void foo(int *p) { printf("%d\n", *p); }It gives compile time error but how? which particular statement is cause...
1 votes
70
Construct minimal DFA for L = {an: n is either a multiple of three or a multiple of 5 }
0 votes
71
Let sigma = { a,b }. The minimal number of states in a DFA that accepts set of all strings with A) exactly 2 "a's" and more than 2 "b's". B) atleast one "a" and e...