True or False, int x = items[0].length is an invalid statement when items is a 2D array

False, since items is an array of arrays, x will be the length of the first array.
  • False, length needs to be replaced with size().
  • True, that statement is only valid in a one dimensional array.
  • False, it should be int x = items[1].length.

There are no hints for this question