Asked by
Annette Perez
on Oct 27, 2024Verified
char[][] table = new char[10][5];What is the value of table[2].length?
A) 0
B) 5
C) 10
D) 15
Table[2].length
Represents the length or size of the third element in an array named "Table", assuming the element is an array or a data structure with a length property.
Char[][]
Represents a two-dimensional array of characters in programming.
- Acquire knowledge on the configuration and handling of two-dimensional arrays in Java.
Verified Answer
SZ
Learning Objectives
- Acquire knowledge on the configuration and handling of two-dimensional arrays in Java.