1 answer
1
Consider the hashing table with 'm' slots and 'n' keys. If the expected number of probes in unsuccessful search is 3. The expected number of probes in a successful search...
0 answers
5
How to prepare SOP (Statement Of Purpose ) ?What are the important points to be taken in mind while preparing SOP
4 answers
6
Consider a direct mapped cache with $64$ blocks and a block size of $16$ bytes. To what block number does the byte address $1206$ map todoes not map$6$$11$$54$
2 answers
10
5 answers
14
A stack organized computer is characterised by instructions withindirect addressingdirect addressingzero addressingindex addressing
9 answers
17
What is the worst case time complexity of inserting $n$ elements into an empty linked list, if the linked list needs to be maintained in sorted order?$\Theta(n)$$\Theta(n...
4 answers
19
Let $G$ be a group of $35$ elements. Then the largest possible size of a subgroup of $G$ other than $G$ itself is _______.
3 answers
21
Consider a relational database containing the following schemas.$$\overset{\text{Catalogue}} {\begin{array}{|c|c|c|} \hline \underline{\text{sno}} & \underline{\text{pno}...
3 answers
23
6 answers
27
His knowledge of the subject was excellent but his classroom performance was_______.extremely poorgooddesirablepraiseworthy
3 answers
28
What is the complexity of the following code?sum=0; for(i=1;i<=n;i*=2) for(j=1;j<=n;j++) sum++;Which of the following is not a valid string?$O(n^2)$$O(n\log\ n)$$O(n)$$O(...
2 answers
29
What is the complexity of the following code? i = n while (i>=1){ for j = 1 to n x=x +1 i = i/2 }$\Theta(n)$$\Theta( \log_2 n)$$\Theta( n/\log_2 n)$$\Theta( n \log_2 n)$