Computer Applications

Consider the given array and answer the questions given below:

int z[ ] [ ] = { {2, 3, 4}, {5, 1, 2}, {7, 9, 3}};

(a) What is the order of the array z[ ][ ]?

(b) What is the value in z[2][0]?

Java Arrays

2 Likes

Answer

(a) The order of the array z[ ][ ] is 3 × 3.

(b) The value in z[2][0] is 7.

Answered By

1 Like


Related Questions