0 votes
3
0 votes
5
If the memory is 768 MB and the block’s size is 384 Bytes, what will be the size of the bitmap in Bytes?I think it should be 2^21 Bytes, but I’m not quite sure.Could ...
2 votes
6
Runtime stack doesnot contain(A) Local variables(B) Static Variables(C) Parameter Passed(D) Return Address
3 votes
7
In which of the following case CPU utilization will be higher?(a) If all the processes are I/O bound(b) Is all the processes are equally CPU bound and I/O bound(c) If all...
0 votes
8
Can we solve fractional knapsack using dynamic programming?
2 votes
9
What are minimum number of tables required for the following given ER models such that they satisfy 1NF ?
0 votes
10
0 votes
11
CAN SOMEONE PLZ EXPLAIN TO ME DELETION IN B+ TREES?? I AM NOT ABLE TO UNDERSTAND CLEARLY.
0 votes
12
Consider a B+ tree in which the maximum number of keys in a Internal node is 5 and maximum number of keys in a leaf node is 4. What is the minimum number of keys in any n...
3 votes
13
Consider a B+ -tree in which the maximum no. of keys in a root is 11. What will be minimum no. of keys in a non-root node? What will be the same in a B-TreePlease also re...
2 votes
17
Consider a hash function that distributes keys uniformly. The hash table size is $20$. After hashing of how many keys will the probability that any new key hashed collide...
1 votes
18
can any one explain double hashing example
1 votes
20
is this halting problem thats why undecidable??
0 votes
21
Let P be a shortest path from some vertex s to some other vertex t in a directed graph. If the weight of each edge in the graph is increased by one, P will still be a sho...
0 votes
23
Is the below statement correct:Bellman Ford finds all negative weight cycles in the graph.This is true or false?
1 votes
26
2 votes
28
Which of the following is true:?1) For a given grammar, there is one and only one language.2) For a given language, there is one and only one grammar.Please explain with ...
0 votes
29
int main() { int a =50; switch(a) { default: a=45; case 49: a++; case 50: a ; case 51: a =a+1; } printf("%d",a); }my doubt is the default case is not executed here why??,...