Starting from:

$20

Homework 1 Solved

Exercise 1

Governments and companies worldwide are becoming increasingly concerned with carbon footprints (annual releases of carbon dioxide into the atmosphere) from buildings burning various types of fuel for heat, vehicles burning fuels for power, and the like.

Create 3 small classes unrelated by inheritance: Building, Car, and Bicycle
Give each class the unique attributes and behaviors as specified in the class diagram in Figure 1 below. Create a single constructor for each class to allow consumers of the class to provide initial values for each attribute.
Write an interface CarbonFootprint with a getCarbonFootprint
Have each of your classes implement that interface so that its getCarbonFootprint method calculates the appropriate carbon footprint for that class, as specified below:
Building footprint = ([monthly gas bill / 10.68] * 119.58 * 12) + ([monthly electric bill / 0.1188] * 1232 * 12)
Car footprint = miles driven per year / miles per gallon * 19.82
Bicycle footprint = miles traveled per month * 0.9
Write an application that does the following:Creates objects of each of the 3 classes
Places references to those objects in an array of CarbonFootprint
Iterates through the array, polymorphically invoking each object’s getCarbonFootprint method
For each object, print identifying information, such as miles traveled or monthly bill amount, along with the object’s carbon footprint.
 

Exercise 2

Extend Exercise 1 by creating and demonstrating the use of an InvalidFootprintException class.

Create the 4 constructors as discussed in this module/week’s presentations.
Extend the appropriate superclass.
Throw the InvalidFootprintException in the constructor of the Building, Car, and Bicycle classes if any of the provided parameter values are negative.
Add code in your main method that handles the InvalidFootprintException, and write code that demonstrates that your handler works (i.e., write code that purposefully causes the InvalidFootprintException to be thrown, but then ensure that it does not crash your program). Instead of crashing, your main method must print a message to the error stream that an invalid footprint was detected.
 

Figure 1. Exercise 1 Class Diagram

More products