5,009 views
0 votes
0 votes

if T(n) = n2 √ n then

  1. T(n) = O(n2)
  2. T(n) = O(n2 log n)
  3. T(n) = O(n3)
  4. None of the above

Im getting option 2 is it correct ?

Please log in or register to answer this question.

Related questions

4.9k
views
0 answers
2 votes
Dulqar asked Jan 24, 2017
4,930 views
In the code fragment below, first and last are integer values and composite(x) is a function that returns true if x is not a prime number and false otherwise.i := 0; j :=...
8.6k
views
1 answers
0 votes
Dulqar asked Jan 24, 2017
8,594 views
An algorithm has two phases. The first phase, initialization, takes time O(n2 log n). The second phase, which is the main computation, takes time O(n3). What is the most ...
1.1k
views
1 answers
0 votes
Dulqar asked Feb 3, 2017
1,130 views
State true or false. When a user encounters a page fault, 1) The user application informs the OS, 2) User uses API calls to the hardware Memory Management unit, 3) Memory...
4.4k
views
1 answers
0 votes
Dulqar asked Feb 3, 2017
4,352 views
Suppose we want to sort an array in ascending order and we implement quicksort so that we always choose the last element in the array as the pivot element. Assume that th...