Questions: Algorithm Analysis and Big-O Notation

3 questions to test your understanding

Score: 0 / 3
Question 1 Multiple Choice

Which of the following is NOT a valid Big-O upper bound for f(n) = 3n² + 100n?

AO(n²)
BO(n³)
CO(n² + n)
DO(n)
Question 2 True / False

An algorithm that runs in O(n²) time is typically slower in practice than one that runs in O(n log n) time.

TTrue
FFalse
Question 3 Short Answer

What is the key difference between O(g(n)), Ω(g(n)), and Θ(g(n))?

Think about your answer, then reveal below.