0 answers
1
1 answer
3
If A3 =0 , then det of A-3I = ?
2 answers
4
U and V are two independent zero mean Gaussian random variables of variances 1/4 and 1/ 9. The probability P(3V  2U) is
0 answers
6
Let f (n) = Ο(n), g(n) = Ο(n) and h(n) = θ(n).Then [f (n) . g(n)] + h(n) is _______.a.Ω(n)b.Ο(n)c.θ(n)d.None of these
2 answers
7
extern int i;int i=5;i=10;int main(){ printf("\ni=%d",i); return 0;}output is?
4 answers
13
1 answer
17
3 answers
18
1 answer
19
How many ordered quadruples $\left ( x_{1},x_{2},x_{3},x_{4} \right )$ of odd positive integers satisfy$$x_{1}+x_{2}+x_{3}+x_{4}=98?$$
1 answer
20
What will be time complexity for the following algo where n is a Prime number?main(){for(i=1; i<=n; i=2*i) for(j=1; j<=n; j++) { if(n%i == 0) while(k<=n...
1 answer
23
Q : One basic doubt that is coming to my mind is whether number of splits in the process of insertion in B+ Tree indexing going to change if we consider left biasing and ...