1 votes
31
Of the following, which best approximates the ratio of the number of nonterminal nodes in the total number of nodes in a complete $K$-ary tree of depth $N$ ?$1/N$$N-1/N$$...
5 votes
33
Convert the pre-fix expression to in-fix $- ^{\ast} +ABC^{\ast} – DE+FG$$(A-B)^{\ast}C+(D^{\ast}E)-(F+G)$$(A+B)^{\ast}C-(D-E)^{\ast}(F+G)$$(A+B-C)^{\ast}(D-E)^{\ast}(F+...
0 votes
36
Raymonds tree based algorithm ensuresno starvation, but deadlock may occur in rare casesno deadlock, but starvation may occurneither deadlock nor starvation can occurdead...
4 votes
37
The master theoremassumes the subproblems are unequal sizescan be used if the subproblems are of equal sizecannot be used for divide and conquer algorithmscannot be used ...
3 votes
38
The minimum height of an AVL tree with $n$ nodes is$\text{Ceil } (\log_2(n+1))$$1.44\ \log_2n$$\text{Floor } (\log_2(n+1))$$1.64\ \log_2n$
3 votes
39
What is the in-order successor of $15$ in the given binary search tree?$18$$6$$17$$20$
0 votes
41
5 votes
44
What is compaction refers toa technique for overcoming internal fragmentationa paging techniquea technique for overcoming external fragmentationa technique for compressin...
3 votes
45
Of the following sort algorithms, which has execution time that is least dependant on initial ordering of the input?Insertion sortQuick sortMerge sortSelection sort
0 votes
46
An aid to determine the deadlock occurrence isresource allocation graphstarvation graphinversion graphnone of the above
2 votes
48
Which of the following algorithms defines time quantum?shortest job scheduling algorithmround robin scheduling algorithmpriority scheduling algorithmmultilevel queue sche...
14 votes
50
5 votes
51
Consider the following pseudocodex:=1; i:=1; while ( x <= 500) begin x:=2^x; i:=i+1; endWhat is the value of $\textsf{i}$ at the end of the pseudocode?$4$$5$$6$$7$
1 votes
53
Which of the following is termed as minimum error code ?Binary codeGray codeExcess-$3$ codeOctal code
0 votes
54
A Steiner patch isBiquadratic Bezeir patchBicubic patchCircular patch onlyBilinear Bezier patch
1 votes
55
Let $S=\{6, 10, 7, 13, 5, 12, 8, 11, 9\}$ and $a=\underset{x \in S}{\Sigma} (x-9)^2$ & $b = \underset{x \in S}{\Sigma} (x-10)^2$. Then$a <b$$a>b$$a=b$None of these
2 votes
60
ln neural network, the network capacity is defined as:The traffic (tarry capacity of the networkThe total number of nodes in the networkThe number of patterns that can be...