0 votes
3 answers
1
What is the total number of comparisons needed in the best case to find minimum and maximum of $300 $ elements?
2 votes
1 answer
2
Find the infinite sum of the series$1 + \frac{4}{7} + \frac{9}{7^2} + \frac{16}{7^3} + \frac{25}{7^4} + .............\Join$
0 votes
0 answers
3
Let $A$ be a nilpotent matrix. Show that $I + A$ is invertible.
1 votes
2 answers
4
Let A be a $5 × 5$ invertible matrix with row sums $1$. That is $\sum_{j=1}^{5} a_{ij} = 1$ for $1 \leq i\leq 5$. Then, what is the sum of all entries of $A^{-1}$.
0 votes
2 answers
5
0 votes
1 answer
6
2 votes
1 answer
7
1 votes
2 answers
8
0 votes
1 answer
11
5 votes
2 answers
12
In what order we should insert the following elements into an empty AVL tree so that we don’t have to perform any rotation on it. ...
2 votes
2 answers
15
long fun( char * s){ long r = 0; for( ; *s ; r = (r << 1) | (*s++ - '0')); return r;}What does the fun("000001010") returns?