Which order sits between O(n) and O(n squared)?
What is 3n + 7 in big-O form?
Why are constants dropped in big-O?
Input doubles under an O(n squared) method. Roughly how many times the work results? Type the multiplier.
Answer: ______________
Input doubles under an O(n) method. What happens to the work?
Big-O describes an upper bound on growth for large n.
Circle one: True False
A student says O(log n) grows faster than O(n) because logs look scary. What is the error?
An O(n squared) method runs on n = 1000, then n = 2000. The constant in front is unknown. What can you still predict?