0 votes
0 answers
31
2 votes
0 answers
40
$S\rightarrow aA|bAc|dc$$A\rightarrow d$Number of states in $CLR\left ( 1 \right )$ parser construction _______________Is$S\rightarrow d.c|$$$A\rightarrow d.,a$will be in...
0 votes
1 answer
41
$1)$ Master-Slave FF is designed to avoid race around condition$2)$ Master-Slave FF is used to store $2$ bit informationWhich of the following statement is correct?What i...
3 votes
2 answers
42
A $3\times 8$ decoder with $2$ enable inputs is used to address $8$ block of memory. What will be the size of each memory block when addressed from a $16$ bit bus with $...
2 votes
2 answers
48
2 votes
2 answers
50
Consider the following function $foo()$void foo(int n){ if(n<=0) printf("Bye"); else{ printf("Hi"); foo(n-3); printf("Hi"); foo(n-1); } }Let $P(n)$ represent recurrence r...