retagged by
425 views

2 Answers

1 votes
1 votes

TAKE LOG ON EACH TERMS AND EVALUATE...

0 votes
0 votes
i think n^2 comes in second position and e^n comes in fourth [position because we know the growth of functions are like that-

2^2^n > n! >4^n >2^n >n^2 >nlogn >logn! >n >2^logn >logn^2 >underoot logn> loglogn>1

Related questions

0 votes
0 votes
3 answers
1
0 votes
0 votes
1 answer
2
go_editor asked Jun 7, 2016
410 views
What is the output of the following program?int main() { int i=0; do { if (i >=5) { i+=2; printf("%d \n", i); break; } else { printf("%d \n", ++i); continue; } } while (i...
0 votes
0 votes
2 answers
4
go_editor asked Jun 8, 2016
447 views
Which of the following statement(s) is(are) true?If $n$ is odd prime number then $2^{n-1} \text{ mod } n =1$If $2^{n-1} \text{ mod } n =1$ for a number $n$ then $n$ is pr...