1.

Consider the following C function.int fun1(int n) {int i, j, k, p, q = 0;for (i = 1; i p = 0;for (j = n; j > 1; j = j/2) ++ p;for (k = 1; k ++ q;}return q;}Which one of the following most closely approximates the return value of the function fun1?

A. n3
B. n(log2)
C. n log n
D. n log (log n)
Answer» E.


Discussion

No Comment Found

Related MCQs