Recent questions without a selected answer

0 votes
0 answers
15331
The block diagram of a CPU with single bus organization is given below.What are the three control steps required to execute instruction MOV R1,32Ans given is D. What is W...
0 votes
1 answer
15332
0 votes
1 answer
15333
0 votes
0 answers
15334
An address space is specified by 24­bit and the correspondence memory space is 16 bit. How many words are there in address space?1 M words2 M words8 M words16 M words
2 votes
0 answers
15335
if anyone have previous year math question of gate of all branches please share by google drive and share link.please friends.Thankyou.
1 votes
1 answer
15336
Consider the following grammar G shown Below :S → abS | ScS | d | cThe number of terminals in follow set of non-terminal S is ___________________ Is “$” symbol cons...
0 votes
0 answers
15337
1 votes
0 answers
15338
The complexity of this program? int fun1 (int n) { int i, j, k, p, q = 0; for (i = 1; i < n; ++i) { p = 0; for (j = n; j 1; j = j/2) { p++; for (k = 1; k < p; k = k * ...
1 votes
1 answer
15339
Can any tell the formula for A<B and A=BI understand the solution but I didn’t found any formula on net. Any valid links are welcome.
1 votes
1 answer
15340
Minimum number of tables needed to represent E1, E2 and E3 are?
1 votes
0 answers
15341
The function f(a,b,q,g)=$\prod m(1,2,4,6,8,9)$. Can f(a,b,q,g) be written as f(q,g,b,a) + $\sum m(5,10)$?If not, what would be the correct equation?
2 votes
1 answer
15342
1 votes
1 answer
15343
0 votes
0 answers
15344
A sen B men C atheD vin
0 votes
1 answer
15345
for 2 relations R(A,B) with functional dependency F={A->B} and S(B,C) witht functional dependency S={B->C} natural join of R and S is in BCNF
0 votes
0 answers
15346
How many Boolean functions are possible for 3 variable input function F(x,y,z) such that above condition is satisfied ?$f(a,b,c)=f(\bar{a},b,\bar{c})$
0 votes
1 answer
15348
0 votes
1 answer
15350
For two relations R(a,b) with FD F={a->b} and S(b,c) with FD F={b->c} then R natural join S is Bcnf. Explain True or False?
0 votes
2 answers
15351
void foo(int n){ while (n! = 0) { if (!(n & 1)) printf(“*”); n = n > 1 ; }} The number of times printf(“*”) is executed, whe...
0 votes
0 answers
15353
A 4way set associative cache lines of 32 bytes and a cache size of 16kb. Which of the below main memory blocks is mapped to set 13 of the cache memory when 16mb main memo...
1 votes
0 answers
15354
It would be great, if the time complexities associated with them are included.
0 votes
1 answer
15355
someone can help me found the regular expression ofL={σ×w, σϵ∑={a, b},#σ(w)mod 3 = 1} tnx.
0 votes
0 answers
15357
Is the below given Peterson’s solution free from deadlock ?I am getting a doubt that if we preempt the P0 after executing line 1 and if P1 arrives next it will get bloc...
1 votes
0 answers
15358
If P1 and P2 are two concurrent process sharing variable x with initial value 10 , then what is the max value of x possible when both process have completed?P1 :for (i=0;...