Question: Question 1 ( 2 5 points ) . Please use the Problem - Solving Process. Write an application that uses an Array of 3 0
Question points Please use the ProblemSolving Process.
Write an application that uses an Array of Numbers random integers from and returns the maximum number, minimum number, average of all numbers, and prints a Bar Chart to show the number distribution
Notes: Maximum number, minimum number, average number, and the Bar Chart must be implemented as separate methods in a separate class. Each method call requires an array as an argument. Please use the additional code given with this lesson to develop your application.
Question points Please use the ProblemSolving Process.
Write a Java application that will initialize a twodimensional array of any number of rows and with variable length columns.
Using a separate method, print out the values of the array in the defined rows and columns.
Determine the average value of all the elements in an array of numbers.
Example DeclarationInitialization:
int array;
int array;
Example Output:
Values in array by row are:
The average value of array is:
Values in array by row are:
The average value of array is:
Question points Please write the Java Code that will execute the Array Expansion in figure below. Note: Please use of the complete problemsolving process. Your solution should output the values of the array after each step of the expansion process. Please generate a test plan and do not forget the screen captures and UML class diagrams
image.png
Example Output:
After a new array of ten integers
arr
After b step of expansion
arr
original
After c step of expansion
arr
original
After c step of expansion copy original integers
arr
original
After d
arr
original null
Question points Problem Solving Process Necessary. Please Include UML Class and Activity diagrams. Dont forget the screen captures.
Starting with the given GradeBook Class below; add the methods: outputGrades, outputBarChart, getAverage, getMaximum, and getMinimum Note: Students can use the methods provided with the additional code file To test your Gradebook Class, use the GradeBookTest Class also provided. Please provide a screen capture of the output of your solution.
SAMPLE OUTPUT
Welcome to the grade book for
CSCI Computer Science II
The grades are:
Test Test Test Average
Student
Student
Student
Student
Student
Student
Student
Student
Student
Student
Lowest grade in the grade book is
Highest grade in the grade book is
Overall grade distribution:
:
:
:
:
:
:
:
:
:
:
:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
