Recent questions tagged ace-test-series

0 votes
1 answer
151
1 votes
1 answer
153
1 votes
2 answers
154
If t(n) and s(n) denotes the time and space complexity of an algorithm with input size n element then which one of the following is always true?S(n)=O(t(n)) correct H...
1 votes
0 answers
156
0 votes
2 answers
157
0 votes
2 answers
160
1 votes
1 answer
163
Consider the following instance of OBST (Optimal Binary Search Tree) Problem.n=4;<a1,a2,a3,a4>=<do,if,int,while>P(1....4)=<3,3,1,1>; Q(0....4)=<2,3,1,1,1>The Cost of OBS...
0 votes
1 answer
164
What is the time complexity?int i,j,k,x=0;for(i=1;i<=n;i++)for(j=1;j<=i*i;j++){if (j mod i ==0)for(k=1;k<=j;k++)x=x+10;}
3 votes
2 answers
165
Which of the following permutations can be obtained in the same order using a stack assuming that input is the sequence 5,6,7,8,9 in that order?A ) 7,8,9,5,6B ) 5,9,6,7,8...
1 votes
2 answers
172
2 votes
1 answer
175
Here the indexing is done on ordered field so which to use Dense or Sparse because both can be done here ?
1 votes
1 answer
176
Please Solve this question. I didn't understood the question properly so please Make Me as well :) What is meant by Leaf Page ?
0 votes
1 answer
177
0 votes
1 answer
180
According to me Option D.Because it should be an error because *("INDIA" + 2 ) = 'D' and we are doing 'D' = 'I' which is not valid so Error ???But answer is C