Answered step by step
Verified Expert Solution
Question
1 Approved Answer
???!! Question (3) Write the definition of a class named evenList that include the following private members: - list: to represent an array of type
???!!
Question (3) Write the definition of a class named evenList that include the following private members: - list: to represent an array of type Integer. - numItems: an integer to represent the number of items in the list. Additionally, the class should include the following public methods: 1. A default constructor to initialize numItems to zero and create list as an array of size 10. 2. A method named addItem that takes an integer (y). The method should add (y) to the end of the list array (if the array is nof full and if (y) is an even number) and increment numItems. 3. A method named isEmpty to return true if list is Empty, otherwise the method should return false Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started