Question: Given a two-dimensional array named scores with double type elements, write the embedded loop to navigate this array and multiply each element in the array
Given a two-dimensional array named scores with double type elements, write the embedded loop to navigate this array and multiply each element in the array by 10, and put the embedded loop inside a method named increase , and the only parameter of this method is a double type two-dimensional array. This method increase should have void as its return type.
Write the one line of code to invoke the increase method inside main. Do you need to receive the return value of increase with a local variable, why or why not?
Given a two-dimensional array named scores with double type elements, write the embedded loop to navigate this array and summarize all items in this array, and put the embedded loop inside a method named sum , and the only parameter of this method is a double type two-dimensional array. This method sum should return the summarized total, therefor its return type should be double.
Write the one line of code to invoke the sum method inside main, and receive the return value with a local variable. What type should this local variable be? Then use a second line of code to output the return value to the console. Assume the actual parameter (the double type two-dimensional array) you plug in for method increase has been initialized.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
