Recent questions without an upvoted answer

1 votes
1 answer
19951
Worst case time complexity of following code? Please explain in detail.void function(int n) { int count = 0; for (int i=0; i<n; i++) for (int j=i; j< i*i; j++) if (j%i ==...
0 votes
0 answers
19952
Suppose size of block 1000 bytes search key of 12 bytes, pointer size 8 bytes. How many maximum records in DB file which can index by dense B+ tree of 2 levels?given ans ...
1 votes
0 answers
19955
Deadlock Question
0 votes
0 answers
19956
Consider the following relational schema R(ABCDE) with:Functional Dependency: {A → B, C → D, BD → E, E → C}The number of given FD’s violate 3NF?
0 votes
0 answers
19957
0 votes
0 answers
19958
Total number of AND gates present inside a 6-bit carrylook ahead generator circuit is
2 votes
1 answer
19959
0 votes
1 answer
19960
A 3 bit down counter is used to control the output of the multiplexer as shown in the figure. The counter is intially at (101)2 then output of multiplexer will follow the...
2 votes
1 answer
19961
0 votes
0 answers
19962
Please explain the answer as much details as possible
1 votes
0 answers
19964
0 votes
0 answers
19965
Can someone explain the 3rd line of proof. a^i = a^i operation a^(j-i) ?
–1 votes
0 answers
19967
0 votes
1 answer
19969
(a^i)(b^j)(c^m)(d^n) where i+j=m+n what will be the CFG for this
0 votes
1 answer
19972
how does a 2 phase locking protocol cause deadlock ?and why is it conflict serializable
0 votes
0 answers
19973
0 votes
2 answers
19974
What will be output if you will compile and execute the following c code? #include<stdio.h>int main(){char c=125;c=c+10;printf("%d",c); return 0;}(A) 135(B) 115(C) -121(D...
0 votes
3 answers
19975
A 1-bit full adder circuit takes 5 ns to generate the carry-out bit and 10 ns for the sum-bit. When 4, 1-bit full adders are cascaded, the maximum rate of additions per s...
0 votes
0 answers
19976
How many binary trees are possible with given preorder:- ABCDAnd given postorder:- cdba
0 votes
0 answers
19977
$ L = \{ wxwy \ | \ \ x,y,w \ \ \epsilon\ ( a + b )^+ \} $Draw the DFA and also write the Reg exp for the above language.
0 votes
0 answers
19978
what is complexity1)to convert infix to prefix 2) to convert infix to postfix 3)convert infix to prefix using stackplz someone tell?
2 votes
1 answer
19980