Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Final Grade Calculation Write a Java program to compute final grades for a course and produce a final grade report. Students in the course complete

image text in transcribed
Final Grade Calculation Write a Java program to compute final grades for a course and produce a final grade report. Students in the course complete two assignments, a test and an exam. A file (ASCIIDataFile) of mark data is prepared over the term. It contains the course name (string) followed by, for each student, the student number (string), name (string) and the marks for assignment 1 (double), assignment 2 (double), test (double) and exam (double). The report lists the students' student number, name, marks in the assignments, test and exam and final grade. In addition, as summary, it presents the average final grade in the course and the number of students included in the report. The report would look similar to the following: COSC 1P02 Final Grades Student # Name A1 A2 Test Exam Final 111111 Doe, John 10.0 10.0 50.0 100.0 100.0 222222 Average, Joe 5.0 5.0 25.0 50.0 50.0 333333 Missing, Im 0.0 0. 0 0.0 0.0 444444 Student, Jane 8.0 7.0 37.0 75.0 74.7 Average 56.2 Number of students: 4 The final grade is computed from the marks as the sum of each individual mark divided by the base mark and multiplied by the weight (contribution to the final grade). The assignments are each marked out of 10 and have a weight of 10. The test is marked out of 50 and has a weight of 30. The exam is marked out of 100 and has a weight of 50

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions

Question

8 What are Mintzberg et al.s five strategy Ps?

Answered: 1 week ago