Question: What code should go in line 3?

  1. `int[][] array = new int[][];`
  2. `int[][] array = new int[3][3];`
  3. `int[][] array = new int[2][2];`
  4. `int[][] array = [][];`

Answer: The correct answer of the above question is Option B:`int[][] array = new int[3][3];`