Recent activity by shivanisrivarshini

2 answers
6
Find the no. of minimum cost spanning tree using Kruskal’s or Primus algorithmi am getting "4" but the answer is given "5" ...verify please
1 answer
7
An unordered list contains n distinct elements. The number of comparisons to find an element in this list that is neither 2nd maximum nor 2nd minimum isΘ(nlogn)Θ(n)Θ(l...
1 answer
8
What is the value of following recurrence.T(n) = T(n/4) + T(n/2) + cn^2 T(1) = c T(0) = 0
2 answers
9
Process control block does not containProcess IDUser identification numberRegistersNone of the above
1 answer
10
Consider the following $B^+$ tree with the order of internal and leaf nodes as $3$ and $2$ respectively: The minimum number of key insertions that causes a new level to b...
1 answer
12
_________ do not take their decisions on measurements or estimates of the current traffic and topology.Static algorithmsAdaptive algorithmsNon-Adaptive algorithmsRecursiv...
1 answer
17
0 answers
18
0 answers
19
2 answers
20
1 answer
21
$\text{Recursive languages are also called type 0 languages. state true or false with explanation}$
1 answer
24
The left-to-right post-order traversal of a tree $T$ yields the following sequence of nodes:$$\text{D K E F B G L M H I J C A.}$$For each node of $T$, the deg...
1 answer
27
The average successful search time taken by binary search on a sorted array of 5 CONSECUTIVE integers starting with 1?My Answer is - 2.2Kindly tell me is it correct or no...
1 answer
28
Can we have a grammar $G$ which is $LL(1)$ but not $SLR(1)$ ,If so given example grammar
1 answer
29
2 answers
30
swap(int c, int d) { int k,t; k=3; t=c; c=d; d=t; k=c+d+t; } main() { int k=5, l=9; swap(k,l); printf("%d,%d",k,l); }9,55,95,1919,5