Illustrate the power of java inheritance and polymorphism

Assignment Help JAVA Programming
Reference no: EM13781560

The learning objective of this question is to illustrate the power of Java inheritance and polymorphism. Your response to this question is in multiple parts. You will submit your answers as specified at the end of this question.

To help you get started and to guide your development efforts for this assignment we have provided scaffolding code. Download and unzip the BlueJ project count.zip. Study the code along with the description below. Edit the code and submit the completed BlueJ project. We have also provided a unit test file to help you check your code.

Now, let us look at the question.

Consider an array of integers as below:

int[] a = {5, 2, -4, 3, 0, -5, 7, 11, 6, 13}

Complete the method named count(int[] a) in the class Count. The method should return the number of positive numbers in the array. Thus count(a)should return 7 (not counting the 2 negative numbers and 0).

On examining your code for count (your solution to part-a), you will see a test similar to this: if (a[i]>0) {...}. If we were to now ask you to modify thecount method so that it counted the number of negative numbers, it would be trivial: All that you would have to do is change the greater-than comparison operator (">")to the less-than operator ("<"). If we were to ask you to modify the count method to count the number of even numbers (whether positive or negative) then you would modify your code to have a test along the following lines: if (isEven(a[i])) {...}. Similarly, you could change your code for other types of counting (prime numbers, numbers greater than 10, etc). Note that in each case we can do any type of counting we like but we need to edit the code for thecount method. This is a simple example of enhancing the functionality of existing code. For this part of the question, you will write Java code that allows you to enhance the counting functionality without modifying the code of existing methods. You will do this using the power of inheritance and polymorphism.

Complete the method countIF that is similar to your implementation of count (from the earlier part of this question) but takes as parameter an object that implements the appropriate test. The signature of countIF is as below:

int countIF( int[] a, Predicate p)

Complete the class Predicate which has just one method that returns true if the parameter is greater than 0:

boolean test(int x){ ... ? ... }

When countIF is invoked with a Predicate object, the behaviour will be as before: Your code will count the number of integers greater than 0 (i.e., the execution would return 7).

Now complete the two classes (IsNegative and IsEven) as subclasses of the Predicate class to help you count negative (IsNegative) and even numbers (IsEven).

class IsNegative extends Predicate {...}

class IsEven extends Predicate {...}

Note: IsNegative and IsEven classes should have a test method with the same signature as before: boolean test(int x). Once these classes have been written you will be able to pass in an instance of the appropriate class to countIF to do the testing we need:

countIF( a, new IsNegative() )

countIF( a, new IsEven() )

The first call above would return 2 for our array. The second call would return 4.

After completing and testing your solution, zip the entire BlueJ folder and submit it. Since your instructor will need all files in the project folder, make sure you zip the entire folder. For this question the names of the BlueJ project, Java class files, and the zip file you submit are given below:

BlueJ project: count

Java classes and Interfaces:

Count.java (this will have two methods: count, and countIF)

Predicate.java (a Java class with one method test)

IsNegative.java (extends Predicate)

IsEven.java (extends Predicate)

CountTest.java (the unit test file - This file is fully complete. Do not modify this file.)

Submit: count.zip

Reference no: EM13781560

Questions Cloud

How some of these ethical failures could have been avoided : Relate any weaknesses in ethical approaches of those involved to your theory bases of consequentialism and nonconsequentialism. Develop recommendations about how some of these ethical failures could have been avoided
Difference between random variation and assignable variation : What is process data and what is the difference between random variation and assignable variation
Exploring your culture : Part of successfully exploring other cultures is having a solid foundation in the tenets of one's culture. This assignment will have you evaluate key components of your culture.
Specific social-political or educational issue : What did the data reveal about your opinion? In other words, was it supported or disproved by your findings?Has your opinion changed after researching it? Explain your answer. What information do you think is needed to formulate an educated opinion..
Illustrate the power of java inheritance and polymorphism : Illustrate the power of Java inheritance and polymorphism. Your response to this question is in multiple parts. You will submit your answers as specified at the end of this question.
Management planning presentation : Imagine you are an executive for BP, and you are preparing a presentation for the board of directors about the organization's direction.
External environmental analysis issues : How you intend to ensure the organization's vision, mission, and people strategies and values statements are aligned with the proposed strategic plan
Write a research paper on obesity : Write a Research Paper on Obesity. Before you submit your Final Research Paper, make sure that you have Incorporated a minimum of five scholarly sources.
Outline and preliminary list of references : Complete the outline after you have done library / Internet research for evidence that bears on your hypothesis. Provide information about all of the following components of the final paper:

Reviews

Write a Review

JAVA Programming Questions & Answers

  Write java statements to create a collection of integers

Write Java statements to create a collection of integers, and to initialize each element of the collection to -1. Then, using for each statement to print the value of each element.

  In cryptarithmetic puzzles mathematical equations are

in cryptarithmetic puzzles mathematical equations are written by using letters. each letter can be digit from 0 to 9

  Use counting sort to sort an array

State the difficulty in attempting to use counting sort to sort an array of n floating-point numbers from the continuous interval [0,1].

  Determine the type of moped

Write a driver class called MopedRental. This class should perform the following: asks the user to enter the size of the moped, the day of the week and the number of hours rented, creates the Moped object, based on the size, and displays the input..

  Artificial intelligence and computational linguistics

Artificial intelligence and computational linguistics - Andy Warhol Paintings - Write your answer to this problem on the next page, and feel free to tear out this page as a reference. Just for fim, here's the output of the method given as input a p..

  Prepare a java program to play pig

Pig is a two player game where the players take turns repeatedly rolling a single 6 sided die. A player repeatedly rolls the die until one of two events happen:

  Count the occurrences of words in a songs lyrics

Count the Occurrences of words in a song's lyrics, State the approach you will use if you get a hard copy of a song's lyrics.

  Create java application to create and maintain contact list

Create a JAVA application to create and maintain a contact list - Create a database to store the contact information.

  Write a bag class with a generic type

Write a Bag class with a generic type. Write a class such as item that has a name and price - Add objects of item to the bag and find the average and the total of the price of all items in the bag.

  The program reads in names

Write a program and include the following methods. The program reads in names and ages (use 2 parallel arrays, maximum size 50) from a file called Stuff.dat.

  Program that lets the user enter four quarterly sales

The figures should be stored in a two-dimensional array. Once the figures arc entered, the program should display the following data for each quarter:

  In this project you need to write a program called

in this project you need to write a program called ecc.javato implement elliptic curve

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd