logo Practice-It logo

Recursive Tracing

Language/Type: Java recursion recursive tracing
Author: Stuart Reges (on 2014/02/13)

Consider the following method:

    public void mystery(int n) {
        if (n > 100)
            System.out.print(n);
        else {
            mystery(2 * n);
            System.out.print(", " + n);
        }
    }

For each call below, indicate what output is produced:

mystery(113)
mystery(70)
mystery(42)
mystery(30)
mystery(10)

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.