1 votes
4
In a restaurant each of $n$ customer gives a hat to the hat check person. The hat check person gives the hat back to the customer in a random order. What is expected numb...
3 votes
8
CAN SOMEBODY EXPLAIN THIS ANSWER PLZ !!!
1 votes
11
$1)n^{2019}=O\left (n^{2020} \right )$$2)O(n^{2019})=O\left (n^{2020} \right )$Which one is correct??If $1)$ is correct, why $2)$ not correct?
0 votes
17
In a box, there are $2$ red, $3$ black and $4$ blue coloured balls. The probability of drawing $2$ blue balls in sequence without replacing, and then drawing $1$ black ba...
2 votes
20
The statistics of runs scored in a series by four batsmen are provided in the following table. Who is the most consistent batsman of these four?$$\begin{array}{|c|c|c|} \...
1 votes
23
int fun(int n) { int count = 0; for (int i = n; i 0; i /= 2) for (int j = 0; j < i; j++) count += 1; return count; } what is the time complexity
2 votes
25
When an inverter is placed between both inputs of an SR flip-flop, the resulting flip-flop is[A].JK flip-flop[B].D flip-flop [C].T flip-flop[D].Master slave JK flip-flopa...
5 votes
29
1 votes
30
______ is the number of moves of the smallest disc in Tower of Hanoi implementation where the tower consisting of 17 discs (numbered from 0 to 16)Answer given: $2^{16}$ ...