13 votes
1
1 votes
6
There are two data sets,each of size 5. The variances of those sets are 4 and 5; means are 2 and 4 respectively. If the sets are combined, what would be variance of combi...
1 votes
7
Let $f(x)=\log|x|$ and $g(x) =\sin x$. If $A$ is the range of $f(g(x))$ and $B$ is the range of $g(f(x))$ then $A\cap B$ is$[-1,0]$$[-1,0)$$[-\infty ,0]$$[-\infty ,1]$
6 votes
10
How many bit strings of length 10 contain either five consecutive 0s or five consecutive 1s?I got 382.Is it correct?
0 votes
12
0 votes
14
The size of minimum vertex cover can be - (A) Smaller than the size of maximum matching (B) No smaller than the size of maximum matching (C) Cannot say
0 votes
16
If G is an infinite cyclic group then which of the following is not true?a) G has exactly 2 generators.b) G is isomorphic to (Z,+).c) Every proper sub group of G is fini...
2 votes
17
In 2PL protocol if all exclusive locks are acquired by transaction in increasing order of their accesses then is the 2PL starvation free ?
0 votes
19
0 votes
20
1 votes
22
the following intermediate best suited for derivation of common subexpression??????????a. qudraplesb.triplesc.treesd.postfix code explain plz
0 votes
23
Addition of all gray code to convert decimal(0-9) into gray code isa)129 b) 108 c) 69 d) 53
1 votes
24
long fun( char * s){ long r = 0; for( ; *s ; r = (r << 1) | (*s++ - '0')); return r;}What does the fun("000001010") returns?