Important Notice:

Practice-It will be discontinued as of November 1st, 2024. After this date, the website will remain online for a transitional period, but login will be restricted to University of Washington NetID authentication. This marks the next phase towards the platform's full retirement. Thank you for your use and support of the application over the years.

If you are looking for an alternative, a similar tool, CodeStepByStep, was developed independently by the original author of Practice-It, and is available at codestepbystep.com**

logo Practice-It logo

mystery2d4

Language/Type: Java 2D arrays array mystery
Author: Marty Stepp (on 2021/04/02)

Consider the following method:

            public Set mystery4(int[][] data, int pos, int n) {
                Set result = new TreeSet<>();
                for (int i = 0; i < n; i++) {
                    for (int j = 0; j < n; j++) {
                        result.add(data[i + pos][j + pos]);
                    }
                }
                return result;
            }
        

Suppose that a variable called grid has been declared as follows:

           int[][] grid = {{8, 2, 7, 8, 2, 1}, {1, 5, 1, 7, 4, 7},
                           {5, 9, 6, 7, 3, 2}, {7, 8, 7, 7, 7, 9},
                           {4, 2, 6, 9, 2, 3}, {2, 2, 8, 1, 1, 3}};
        

which means it will store the following 6-by-6 grid of values:

            8       2       7       8       2       1       
            1       5       1       7       4       7       
            5       9       6       7       3       2       
            7       8       7       7       7       9       
            4       2       6       9       2       3       
            2       2       8       1       1       3    
        

For each call below, indicate what value is returned. If the method call results in an exception being thrown, write "exception" instead.

mystery4(grid, 2, 2)
mystery4(grid, 0, 2)
mystery4(grid, 3, 3)

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.