Havinh=g the software to do it all
not all the question are showing type it out
Answer:
God is always your friend mate
Explanation:
Answer:
Option C: {{4, 1, 7}, {-10, -11, -12}}
Explanation:
There is a logical error in the inner loop.
for (int j = 0; j < num.length; j++)
It shouldn't be "j < num.length" as the iteration of the inner loop will be based on the length of the row number of the two dimensional array. The inner loop is expected to traverse through the every column of the same row in the two dimensional array and sum up the number. To fix this error, we can change it to
for (int j = 0; j < r.length; j++)