4 votes
61
Suppose that cache access time is 7 ns, main memory access time is 50 ns and disk space access time is 1200 ns. If the hit rate of cache is 60% and of main memory hier...
9 votes
65
3 votes
66
0 votes
68
A particular parallel program computation requires 100ns when executed on a single processor . If 20% of this computation is sequential then execution time for this pro...
0 votes
69
Following parameters to construct B+ treesearch key - 15Bblock size - 512Brecord pointer - 9Bblock pointer - 8BMax num of keys that can be accomodated in each non leaf no...
1 votes
70
que- in how many way can 7 girl are seated at a round table so that 2 particular girl are seprated ???
0 votes
72
A decimal number has 25 digits. The number of bits required for its equivalent binary representation is approximately1)502)753)604)70
1 votes
74
How many onto function are there from a set with 5 element to a set with 4 elements?A. 340 B. 240 C. 440 D. 540
4 votes
76
0 votes
77
0 votes
78
#include <stdio.h void f(int,int); int main(void){ int a = 5; f(a,a); printf("%d",a); } void f(int x, int y){ x ; y=y+15; }If copy-restore is used, then what will be the ...
0 votes
83
can anyone tell me difference between dense and sparse matrix :))
1 votes
84
The solution to the quadratic equationx^2-11x+22=0 are x=3 and x=6. What is the base of the numbers?
1 votes
86
Consider the experiment of throwing a die, if a multiple of 3 comes up, throw thedie again and if any other number comes, toss a coin. Find the conditional probabilityof ...
1 votes
87
10 distinct accident occurs in a week.What is the probability that all accidents occured on the same day ?
0 votes
88
If f(n)=O(g(n)). && g(n) != O(f(n))g(n) = O(h(n)). && h(n) = O(g(n))Check following statement are true/false?1. f(n)+h(n)=theta(g(n))2. f(n)*h(n)=theta(g(n)*h(n))3. g...