logo Practice-It logo

BJP4 Self-Check 5.4: whileLoopMystery2

Language/Type: Java mystery while loops
Author: Leslie Ferguson (on 2016/09/08)

Given the following method:

public static void mystery(int x) {
    int y = 0;
    while (x % 2 == 0) {
        y++;
        x = x / 2;
    }
    System.out.println(x + " " + y);
}

Write the output of each of the following calls.

mystery(19);
mystery(42);
mystery(48);
mystery(40);
mystery(64);

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.