1. Which notation describes the upper bound of an algorithm's growth rate?
2. What does Theta(g(n)) represent?
3. Which notation is used to describe the lower bound of an algorithm's growth rate?
4. If f(n) = 5n^2 + 3n + 2 , which of the following is true?
5. Which of the following is true about O(g(n)) ?
6. What is the relationship between O, Omega, and Theta ?
7. Which of the following functions grows faster than n^2 ?
8. What is the order of growth of f(n) = 2^n ?
9. Which of the following is true about o(g(n)) ?
10. Which of the following is the correct order of growth from slowest to fastest?