Question: Write the missing method below that will return the sum of a given row in the array. public class Question4{ public static void main(String args[]){

Write the missing method below that will return the sum of a given row in the array.

public class Question4{

public static void main(String args[]){

int arr[ ][ ] = {{10, 45}, {2, 42, 67, 5}, {3, 21}};

System.out.println(getSumofRow(arr, 1)); //prints the sum of row 1

}

private static int getSumOfRow (int [][] myArray, int row) {

} // getSumOfRow

} //main

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!