1 votes
1 answer
41
the product of the non-zero eigen values of the matrax1 0 0 0 10 1 1 1 00 1 1 1 00 1 1 1 01 0 0 0 1how can we solve this question?
0 votes
3 answers
42
Let A be the 2 × 2 matrix with elements a11 = a12 = a21 = +1 and a22 = −1. Then the eigenvalues of the matrix A19 are(a) 1024 and−1024 (b) 1024√2 and −1024√2(c...
0 votes
1 answer
43
int Dosomething(int n){if(n>=2)return 1;elsereturn (floor(sqrt(n)))+n;}time complexity of the program?
0 votes
1 answer
44
let n>=mint gcd(n,m){if(n%m==0)return ml;n=n%m;return gcd(m,n);}how many recursive calls are made by this function?
2 votes
3 answers
45
2 votes
1 answer
46
#include <stdio.h #include <stdarg.h int fun(int n, ...) { int i, j = 1, val = 0; va_list p; va_start(p, n); for (; j < n; ++j) { i = va_arg(p, int); val += i; } va_end(p...
1 votes
3 answers
47
#include <stdio.h void main() { int a = 3; int b = ++a + a++ + a; printf("Value of b is %d", b); }after compiling o...
0 votes
1 answer
48
#include <stdio.h #define PRINT(i, limit) do \ { \ if (i++ < limit) \ { \ printf("GeeksQuiz\n"); \ continue; \ } \ }while(0) int main() { int i = 0; PRINT(i, 3); return 0...