A 2D array in Java is fundamentally
- A
A contiguous block in memory
- Bcheck_circle
An array of arrays (each row is its own object)
- C
A linked list
- D
A flat 1D array with index calc
Explanation
<code>int[][]</code> is <code>int[]</code> (rows) of <code>int[]</code> (cols).