Step 1: Recall the Master Theorem.
For the recurrence \(T(n) = aT(n/b) + f(n)\), define \(n^{\log_b(a)}\) as the critical function.
Step 2: Analyze option (C).
If \(f(n) = O\!\left(n^{\log_b(a)-\varepsilon}\right)\) for some \(\varepsilon > 0\), then \(f(n)\) grows polynomially slower than \(n^{\log_b(a)}\).
Step 3: Apply Case 1 of the Master Theorem.
Under this condition, the solution to the recurrence is dominated by the recursive term, yielding:
\[
T(n) = \Theta\!\left(n^{\log_b(a)}\right).
\]
Step 4: Eliminate incorrect options.
Options (A), (B), and (D) do not hold in general without additional constraints on \(a\) and \(b\).
Step 5: Conclusion.
Hence, option (C) is the correct statement.
Final Answer: (C)