Is it always the case that ${n \choose k} = O(n^k)$?
If it is, then why does the comment from Clement C. in this post state it is only the case when $k$ is a constant?
If it is not, then why is the asymptotic time complexity of the brute force algorithm for the Clique decision problem denoted as ${n \choose k}O(k^2)O(1) = O(n^kk^2)$ even though $k$ may not be a constant?
Also, supposing ${n \choose k} = O(n^k)$, wouldn't it be more precise to state ${n \choose k} = O(n^{\min(k, n-k)})$?