growth

Can i configure a ARM processor for Ascending Stack growth direction?

Hello, There has been one question here which talked about stack growth direction. To which Micahel Burr had replied saying in ARM processors stack growth direction can be configured - i.e. either descending(normal behaviour) stack grows towards zero address(lower address) in memory or descending,i.e. stack grows towards higher address ...

Sorting the order of growth of the functions?

Please order the function belows by growth rate from fastest to slowest: n^10 2^n nlog(n) 10^6 And my answer is: 2^n n^10 nlog(n) 10^6 Is my answer correct? ...

Determining what is causing massive log file growth on a basically inactive SQL 2005 DB

I have a SQL DB in a test environment that ist he back end datasource for a test web site. There is no activity on the website (because it is in our test environment) but every couple of days the DB log files grow extremely large causing issues with backups, etc.. This is a test environment so there is no activity that we don't have co...

Help with big O notation

Hi, I've been having some problems trying to grasp the concept of big O notation. So, by definition big O is as follows, T(n) ∈ O(G(n)) if T(n) <= G(n) * C. Since the the constant "C" can be any integer > 0, wouldn't this following example be true as well? Example: n log n ∈ O(log n) n log n <= log n * c Where C is equal to the va...