Answer:
isSquare = true;
for (int i = 0; i < a2d.length && isSquare; i++)
if (a2d[i].length != a2d.length)
isSquare = false;
Step-by-step explanation:
5.3m questions
6.9m answers