Performance Analysis - time and space complexities, asymptotic notation, recurrence relations - Online Test
30:00
1. What is the primary goal of performance analysis in algorithms?
2. Which measure quantifies the amount of memory an algorithm uses?
3. Which measure quantifies the amount of time an algorithm takes to run?
4. What does 'best-case' complexity refer to in algorithm analysis?
5. What does 'worst-case' complexity refer to in algorithm analysis?
6. What does 'average-case' complexity refer to in algorithm analysis?
7. Which asymptotic notation provides an upper bound on the growth rate of a function?
8. Which asymptotic notation provides a lower bound on the growth rate of a function?
9. Which asymptotic notation provides a tight bound (both upper and lower) on the growth rate of a function?
10. If an algorithm's runtime is T(n) = 3n^2 + 5n + 10, what is its Big O complexity?
Test Results
0/0