Recent activity by manish_pal_sunny

4 answers
2
The probability of three consecutive heads in four tosses of a fair coin is$\left(\dfrac{1}{4}\right)$$\left(\dfrac{1}{8}\right)$$\left(\dfrac{1}{16}\right)$$\left(\dfrac...
2 answers
3
Given 10 tosses of a coin with probability of head = .$4$ = ($1$ - the probability of tail), the probability of at least one head is?$(.4)^{10}$$1 - (.4)^{10}$$1 - (.6)^{...
4 answers
5
5 answers
10
Suppose $T(n) =2T (\frac{n}{2}) + n$, $T(0) = T(1) =1$Which one of the following is FALSE?$T(n)=O(n^2)$$T(n)=\Theta(n \log n)$$T(n)=\Omega(n^2)$$T(n)=O(n \log n)$
5 answers
12
How many distinct minimum weight spanning trees does the following undirected, weighted graph have ?$8$$16$$32$$64$None of the above
4 answers
13
Consider the code fragment written in C below :void f (int n) { if (n <=1) { printf ("%d", n); } else { f (n/2); printf ("%d", n%2); } }What does f(173) print?$010110101$...
9 answers
18