Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Directions The file must be called <YourNameProg2.java> (driver program) <YourIn

ID: 3626746 • Letter: D

Question

Directions
The file must be called <YourNameProg2.java> (driver program)
<YourInitialsHwScore.java>(Homework Scores file)

Example: KenDeweyProg2.java (driver program)
KDHwScore.java (YIHWScore file)

Ensure you include ALL files required to make your program compile and run.
I would like to see your .java files only.

Proper coding conventions required the first letter of the class start with a capital letter and the first letter of each additional word start with a capital letter.

Style Requirements
Refer to the Java Coding Style Document.
Add comments as required for all .java files.
Overall Requirements
Provide a complete program that handles the entry and display of homework scores. As part of your program, provide a YIHwScore class that contains the points earned on a particular homework and also the maximum possible points on that homework. In order to keep track of the overall average, the YIHwScore class also contains the total points earned on all homework combined and the total possible points on all homework combined. In order to determine letter grades, the YiHwScore class specifies cutoff values for the A, B, C, and D letter grades.
More specifically, the YIHwScore class should contain these constants and variables:

• Array constant for the letter grade cutoffs: A = 0.9, B = 0.8, C = 0.7, D = 0.6

o One dimensional array, only needs to hold the values, not the letters.

• Class variables named totalEarnedPoints and totalPossiblePoints

• Instance variables named earnedPoints and possiblePoints

YourNameProg2.java
Provide a main driver method. It should:

• Instantiate a 4 element array of YIHwScore and store the values below in this array. In the instantiations, initialize the objects to these values:
o hw1: 26.5 earned points, 30 possible points
o hw2: 29 earned points, 27.5 possible points
o hw3: 0 earned points, 20 possible points
o hw4: 16 earned points, 20 possible points

• For hw1, hw2, hw3 and hw4 call printGrade. (instance method)

• Call printOverallGrade. (class method)

YIHwScore.java

Within your YiHwScore class, include these requirements:

The YIHwScore class should contain a two-parameter constructor that handles initializations for the earnedPoints and possiblePoints instance variables.
Implement a printGrade method that prints a particular homework’s earned points, possible points, and letter grade.

The letter grade is based on this scale: A ? 90%, B ? 80%, C ? 70%, D ? 60%, F < 60%.
Implement a class method named printOverallGrade that prints the overall earned points, overall possible points, and overall letter grade.

Use appropriate modifiers for methods. The modifiers we’ve discussed so far are private, public, and static. Use helping methods when appropriate.

As always, you should:

• Limit your use of class variables and instance variables – only use them if appropriate.

• Use appropriate modifiers for your methods. The modifiers we’ve discussed are private, public, static, and final.

• Use helper methods if appropriate.
Mimic the sample session precisely.

Explanation / Answer

please rate - thanks

remember to change names to your name and initials

public class YourNameProg2
{
public static void main(String[] args)

{
int i;
YIHwScore []hw = new YIHwScore[4];
hw[0]=new YIHwScore(26.5,30);
hw[1]=new YIHwScore(29,27.5);
hw[2]=new YIHwScore(0,20);
hw[3]=new YIHwScore(16,20);
for(i=0;i<4;i++)
{System.out.println(" For homework "+(i+1));
hw[i].printGrade();
}
printOverallGrade(hw);   

}
public static void printOverallGrade(YIHwScore hw[])
{int i;
double totalEarned=0, totalPossible=0;
for(i=0;i<4;i++)
   {totalEarned+=hw[i].getEarnedPoints();
    totalPossible+=hw[i].getPossiblePoints();
   }
YIHwScore totHw = new YIHwScore(totalEarned,totalPossible);
System.out.println(" Overall Grade is ");
totHw.printGrade();

}
}

---------------------------------------

class YIHwScore
{double cutoff[]={.9,.8,.7,.6};
private double earnedPoints,possiblePoints;
public YIHwScore()
{
}
public YIHwScore(double e,double p)
{earnedPoints=e;
possiblePoints=p;
}
public void printGrade()
{char letter='F';
int i;
double grade=earnedPoints/possiblePoints;
for(i=0;i<4;i++)
   if(grade>=cutoff[i])
       {letter=(char)('A'+i);
        i=5;
        }

System.out.println("Earned points: "+earnedPoints);
System.out.println("possible points: "+possiblePoints);
System.out.println("letter grade: "+letter);
}
public double getEarnedPoints()
{return earnedPoints;
}
public double getPossiblePoints()
{return possiblePoints;
}

}

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote