logo Practice-It logo

recursiveTracing

Language/Type: Java recursion recursive tracing
Author: Marty Stepp (on 2011/02/16)

For each call to the following method, indicate what output is produced:

public static void mystery(int n) {
    if (n <= 1) {
        System.out.print(": ");
    } else {
        System.out.print((n % 2) + " ");
        mystery(n / 2);
        System.out.print(n + " ");
    }
}
mystery(8);
mystery(25);
mystery(46);

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.