Question: Modify the FitnessTracker class so that the default constructor calls the three-parameter constructor. Use TestFitnessTracker2 to test the new version of the class. Grading Write

Modify the FitnessTracker class so that the default constructor calls the three-parameter constructor. Use TestFitnessTracker2 to test the new version of the class. Grading Write your Java code in the area on the right. Use the Run button to compile and run the code. Clicking the Run Checks button will run pre-configured tests against your code to calculate a grade. Once you are happy with your results, click the Submit button to record your score.

FitnessTracker2.java

import java.time.*; public class FitnessTracker2 { String activity; int minutes; LocalDate date; public FitnessTracker2() { } public FitnessTracker2(String activityParam, int minutesParam, LocalDate dateParam) { } public String getActivity() { } public int getMinutes() { } public LocalDate getDate() { } }

TestFitnessTracker2.java

import java.time.*; public class TestFitnessTracker2 { public static void main(String[] args) { FitnessTracker2 exercise = new FitnessTracker2();

System.out.println(exercise.getActivity() + " " + exercise.getMinutes() + " minutes on " + exercise.getDate());

// code to test constructor added for exercise 3b LocalDate date = LocalDate.of(2020, 8, 20); FitnessTracker2 exercise2 = new FitnessTracker2("bicycling", 35, date);

System.out.println(exercise2.getActivity() + " " + exercise2.getMinutes() + " minutes on " + exercise2.getDate()); } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!