**Is it accurate to use the terms best-case, worst-case, or average-case?**
*No*, it is not accurate to use the terms best-case, worst-case, and average-case.
**What does Big-O notation say about a function?**
Big-O notation says that a function *will take at most $g(n)$ time to run or less.*
**What does Omega notation say about a function?**
Omega notation says that a function *will take at least $g(n)$ time to run or more.*
**What does Theta notation say about a function?**
Theta notation says that a function *will take exactly $g(n)$ time to run.*