
Write a Java class DemoList, the class has:
a private attribute list1 as an ArrayList of Integer.
Zero argument constructor that create and initilaise list1 to an empty list.
A method fill(), which take no argument and return no values. The method should allow the user to read the list of integers: user should be prompted, to enter a series of integers one at a time, until the user enters 0. Those values are used to fill list1.
A method sortList() that return the sorted list1.
A method brint(): that print contents of list1.
A method maximum() that returns maximum of list1.
A method average that returns average of list1.
A method median() that return median of lsit1 as follows:
If the number of elements are odd then the median is the middle one in the sorted list
If the number of elements is even, the median is the average of the middle two elements.
For example: the median of 1, 2, 2, 3, 5 is 2, then middle element. The median of 1, 2, 2, 3, 4, 5, is 2.5 the average of the two middle values 2 and 3.
Write a Java class TestDemoList, that has a main method to do the followings:
Create an object of DemoList class call it dl.
Call a proper method to fill dl with data.
Call a proper method to print content of dl.
Call a proper method to print content of dl after sorting it.
Call a proper method to print the maximum in dl.
Call a proper method to print the average of dl.
Call a proper method to print the median of dl.

Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 4 images

- Java programming questionarrow_forward2. Write a class ArrayClass, where the main method asks the user to enter the four num bers. Create a method printArray that prints the array whenever required (use Acrav.toString method). Make the program run as shown in the Sample Run below. Green is user input. Use Attax.sort, Attach.bianrySearch. Attaveauals Sample Run List1, Enter four num bers: 2 33 2 List2, Enter four num bers: 6 25 4 List3, Enter four num bers: 52 46 Your original Listi: [2, 3, 3, 2] Your original List2: [6, 2, 5, 4] Your original List3: [5, 2, 4, 6] Sorted Listi is: [2, 2, 3, 3] Enter a number from the sorted List1 to search for: 3 Value 3 is in index 2 (or position 3) List that are the same when sorted: [2, 4, 5, 6]arrow_forwardDevelop a class ResizingArrayQueueOfStrings that implements the queueabstraction with a fixed-size array, and then extend your implementation to use arrayresizing to remove the size restriction.Develop a class ResizingArrayQueueOfStrings that implements the queueabstraction with a fixed-size array, and then extend your implementation to use arrayresizing to remove the size restriction.arrow_forward
- Challenge 3: Scores.java and TestScores.java Implement a Scores class. The class constructor should accept an array of scores as its argument. The class should have a method that returns the average of the scores. If any score in the array is negative or greater than 100, the class should throw an IllegalArgumentException. Implement a TestScores class that creates an array and fills it with numbers given by the user. It should catch the exception thrown when the user enters an illegal value.arrow_forwardin python class name: Runner function within a class: def __getitem__(self, lhs: Union[int. list[bool]]) -> Union[float, Runner]: The function should take a list[bool] and will return a new Runner object containing only the filtered values Example : c = Runner([1.0, 2.0, 3.0, 4.0, 2.0, 1.0]) filter = c > 2.0 print(filter) # Output: [False, True, True, False, False]) d = c[filter] print(d) # Output: Runner([3.0, 4.0])arrow_forward1. Write a program that calls a method that takes an integer array as a parameter (you can initialize an array in the main method) and find the minimum value from the list and returns it. Partial program is given below. public class Min{ public static void main(String[] args){ int arr= System.out.print(minimum(arr)); }arrow_forward
- In C++ Call your class quadraticExpression.• Your private data will be a, b, c. Make them doubles.• Create an enumerated list witho NO_ROOTS = 0o ONE_ROOT = 1o TWO_ROOTS = 2o INFINITE_ROOTS = 3• Write the constructor as stated in the book• Write the changeCoeeficients as stated in the book• Write the getACoeeficient, getBCoeeficient,getCCoeeficient as inline constant functions• Write evaluate function to take a double a return a double. Constantfunction.• Write getNumberOfRoots function to return an integer. Constantfunction.• Write getFirstRoot and getSecondRoot to return the first and secondroots. Return a domain_error is there is no first or second root.Constant Functions.Use my .cpp file to test out your classarrow_forwardusing java programming code the followingarrow_forwardTrue or False? In Java, an array is a primitive type that need not be instantiated.arrow_forward
- public LLNode secondHalf(LLNode head) { }arrow_forwardA business that sells dog food keeps information about its dog food products in a linked list. The list is named dogFoodList. (This means dogFoodList points to the first node in the list.) A node in the list contains the name of the dog food (a String), a dog food ID (also a String) and the price (a double.) a.) Create a class for a node in the list. b.) Use this class to write pseudocode or Java for a public method that prints the name of all dog foods in the list where the price is more than $20.00.arrow_forwardAssignment1: Analyse the case study given in chapter 3 Linked listAnswer the following questions from Library.java1. Write the different class names with class keyword chapter 3 Linked list : https://drive.google.com/file/d/1NRN_3Fx3smkjwv1jgG8hzaiGfnNfeeDb/view?usp=sharingarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





