Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a Java program, called VariousArrayTasks that has 4 static methods called fillArray(), sumArray(), avgArray(), and printArray(). The fillArray() method should use a Scanner to

Write a Java program, called VariousArrayTasks that has 4 static methods called fillArray(), sumArray(), avgArray(), and printArray(). The fillArray() method should use a Scanner to take in a number representing the length of the array and then read in numbers to fill the array. This array will be an int array. The fillArray() method should take no input and return an int array. It should be called from the main method. The sumArray() method should take an int array as its input parameter and returns an integer value that is the sum of all the elements in the array. The avgArray() method should take an int array as its input parameter and return a double value that is the average of all the elements in the array. The printArray() method should take an int array as its input parameter and has no return value. It should then print out the elements of the array on the same line separated by a space ( ). All methods should work for integer arrays.

NOTE:

The program should print to the screen the sum of all the elements in the array, and the average of all the elements in the array followed by the array elements printed to the screen separated by a space AND all on one line

e.g

sum = ans

average = ans

1 3 5

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional SQL Server 2012 Internals And Troubleshooting

Authors: Christian Bolton, Justin Langford

1st Edition

1118177657, 9781118177655

More Books

Students also viewed these Databases questions

Question

Describe the factors influencing of performance appraisal.

Answered: 1 week ago

Question

What is quality of work life ?

Answered: 1 week ago