What is the result of executing this Java code?
int[][] table = new int[3][10];
Allocates memory for a 3x10 matrix without initializing values
Initializes a list of three arrays, each with ten elements
Declares a table with 3 columns and 10 rows
Creates a two-dimensional array with 3 rows and 10 columns