For 2D array <code>m</code>, number of rows is given by
- A
m.size()
- B
m.length()
- C
m[0].length
- Dcheck_circle
m.length
Explanation
<code>m.length</code> is row count; <code>m[i].length</code> is column count of row i.
AP Computer Science A· difficulty 3/5
For 2D array <code>m</code>, number of rows is given by
m.size()
m.length()
m[0].length
m.length
Explanation
<code>m.length</code> is row count; <code>m[i].length</code> is column count of row i.
Want 10 more like this — adaptive to your weak spots?