What is the big Oh of the following code snippet?
for(int i = 1; i < n; i *= 2){ System.out.println("Value " + i + " is " + values[i]); }
There are no hints for this question