What is the time complexity of the following code :
int a = 0, i = N; while (i > 0) { a += i; i /= 2; }
1 Million +
500 +
100 +