0 votes
1 answer
21
How large a file can be addressed by a double indirect block alone in a 64 bit system?minimum block entry size 8 byte and block size 8KB
1 votes
0 answers
24
0 votes
1 answer
25
1 votes
2 answers
26
system has 9 identical resources and N processes competing for them..Each process can request at most 4 resourceswhat is the minimum possible value of n which will lead t...
2 votes
2 answers
27
1 votes
0 answers
28
in a heavily loaded network,which one we should use a)pure alohab)slotted aloha
2 votes
1 answer
29
What is the worst case running time of searching an element in balanced binary search tree of (2n)! elements
2 votes
1 answer
30
number of distinct binary tree,that can be created by 5 nodes(distinct)
0 votes
1 answer
31
A system has 32 bit Virtual adress and 8KB page size.main memory is 128 MB..the size of page table, when page table ,when pt entry has 1 valid bit 1 modified bit and fram...
0 votes
0 answers
32
Number of relations which will be either symmetric or antisymeetric of 4 elements will be?
3 votes
1 answer
33
graph of 100 edges and 25 vertices..size of minimum vertex cover is 8..what is the size of maximum independence set?
0 votes
1 answer
34
Find the number of orders in which we can insert {1,2,...,7} in AVL tree,such that no rotation needs to be performed is _____(consider 4 as root element)
1 votes
3 answers
35
A mean -heap having 1024 elements with the key ranging from 0 to 1023 ,stored in array of 1024 indices the maxmimum difference between keys of all elements that can be st...
2 votes
2 answers
36
$T(N) = 2T\sqrt{N} + Log\sqrt{N}$what is the solution of recurrence relation
0 votes
1 answer
37
You are given a heap containing N elements. Write a procedure which takes as input a parameter k, and outputs the k'th smallest number in the heap. The running time of th...
1 votes
1 answer
38
Derive the running time of the binary search algorithm. If I modify binary search to break the interval size into 1/3, 2/3 rather than 1/2, 1/2, then what is the worst ca...
5 votes
1 answer
39
a fair dice is rolled until the output appers to be >4..now what is the probability that we need an even number of roll to get that?(forgot the options)
2 votes
1 answer
40
What is the time complexity of finding the kth smallest element in an array?$O(\log n)$$o(\log n)$$\Omega(n\log n)$$O(n)$