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...
0 votes
1 answer
51
1 votes
2 answers
55
What is the solution of recurrence relation$T\left ( n \right )=T\left ( n-1 \right )+n$
2 votes
1 answer
56
Consider the relation $R\left ( A,B,C,D,E \right )$$A\rightarrow BC$$C\rightarrow E$$B\rightarrow D$$E\rightarrow A$Total number of superkeys present in relation will be ...
1 votes
3 answers
57
$\pi _{A_{1}}\left ( \pi _{A_{2}}\left ( \sigma _{C_{1}}\left ( \sigma _{C_{2}} \left ( R_{1} \right )\right ) \right ) \right )\rightarrow \pi _{A_{1}}\left ( \sigma _{C...