Suppose a user executes the below run() method.
Show all the values taken on by the variables of the program.public static void run() { int n = 26; int k = 0; for(; n != 0; n /= 2) { if(n % 2 == 1) { k++; } } IO.println(k); }
What does the method print?n k
In this case, the program would print 3.n 26 13 6 3 1 0 k 0 1 2 3
In this case, the program would print 3.n 22 11 5 2 1 0 k 0 1 2 3
In this case, the program would print 2.n 20 10 5 2 1 0 k 0 1 2