Computer Applications

Which one of the following Java statements assign 100 to the last element of a 3 × 3 array?

  1. x[2][2]=100;
  2. x[3][3]=100;
  3. x[2][3]=100;
  4. x[3][2]=100;

Java Arrays

6 Likes

Answer

x[2][2]=100;

Reason — In Java, array indexing starts from 0, so a 3 × 3 array has valid row and column indices 0, 1, and 2. The last element is at row index 2 and column index 2, so x[2][2] = 100; correctly assigns the value 100 to that element.

Answered By

3 Likes


Related Questions