When using a nested loop to explore a bidimensional array table, what is the correct way to print each element?
table
Use table.length for rows and table[i].length for columns in the loop
table.length
table[i].length
Use a single loop with table.length
Use table.length for both rows and columns
Use table[0].length for rows and table.length for columns
table[0].length