Suppose a method p has the following heading:

```
public static int[][] p()
```
What return statement may be used in p()?

a. return 1;
b. return {1, 2, 3};
c. return int[]{1, 2, 3};
d. return new int[]{1, 2, 3};
e. return new int[][]{{1, 2, 3}, {2, 4, 5}};

e

Computer Science & Information Technology

You might also like to view...

What View allows you to add rounded corners and shadows to a group of views?

a. ShadowView b. ViewGroup c. CardView d. CornerView

Computer Science & Information Technology

The _____ header includes the most commonly used Ogre header files.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology