Question

Here's a scenario our professor asked us to figure out for extra credit and I am...

Here's a scenario our professor asked us to figure out for extra credit and I am not sure how to set it up or solve:

Jeremy has a 64.80% in his class and needs a 70% in order to pass. The grading rubric is made up of three tests equaling 20% of his grade, online homework, which is 15% of his grade, and final exam, which is 25% of the overall grade.

Jeremy's three test scores are 68%, 40%, and 60% and has gotten a 100% on all of the homework, which has him currently sitting at a 64.80%.

The professor told her students that she will take their lowest test grade and replace it with their final grade (if it is a higher score) while also keeping the final grade (meaning two of their test grades will be the same).

For example, if the student got a 70% on the final, his test grades would change to 68%, 70% (replacing the 40%), 60% (weighted 20%) and then 70% for final (weighted 25%).

What does Jeremy need to get on the final exam in order for his second exam (40% weighted at 20% of his grade) to be replaced, while also including that same grade as his final (weighted at 25%) in order to get a 70% overall in the class?

0 0
Add a comment Improve this question Transcribed image text
Answer #1

ANSWER:

Let us represent the scores as followes

= score in test 1

= score in test 2

= score in test 3

h = score in test home work

f = score in test final exam.

Given weightage for = = 20%= 20/100

h = 15/100 = 15%

f = 25/100 = 25%

Now , A/Q

Total final score   70%

Total final score 70 / 100

Now , total final score on the given weightage is calculated as

But it is given in the question   = f

  

  

Minimum final grade should be 66% in order to get an overall grade of 70%.

Add a comment
Know the answer?
Add Answer to:
Here's a scenario our professor asked us to figure out for extra credit and I am...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Grading Policy In addition to three in-class tests and a final exam, the final grade will...

    Grading Policy In addition to three in-class tests and a final exam, the final grade will include assessment of homework, quiz projects/classroom activities, and classroom participation, according to the following weights 1. Homework and Worksheets 2. Three Tests 3. Final Exam 4. Quizzes and Class Participation/Classroom Citizenshi 1 5% 40% 25% 20% Total 100% Grad Ran 92 100 90-91 88-89 82-87 80-81 an 78 -79 70-77 68 -69 66 67 60- 65 Assignment Grading: Each written assignment, except the Final...

  • Professor Dolittle has asked some computer science students to write a program that will help him...

    Professor Dolittle has asked some computer science students to write a program that will help him calculate his final grades. Professor Dolittle gives two midterms and a final exam. Each of these is worth 100 points. In addition, he gives a number of homework assignments during the semester. Each homework assignment is worth 100 points. At the end of the semester, Professor Dolittle wants to calculate the median score on the homework assignments for the semester. He believes that the...

  • Please show all work step by step. thank you! Please read the direction in every problem....

    Please show all work step by step. thank you! Please read the direction in every problem. Show all your work here. (Round probabilities to 4 decimals.) 1. A student earned grades of 84, 78, 84, and 72 on her four regular tests. She earned a grade of 78 on the final exam and 86 on her class projects. Her combined homework grade was 87. The four regular tests count for 40% of the course grade, the final exam counts for...

  • I asked a question similar to this one, which was answered perfectly. Another practice problem is...

    I asked a question similar to this one, which was answered perfectly. Another practice problem is now asking me to use two classes and get user input. For this Java program, you will write two classes: GradeCalculator and GradeCalculatorDriver In the GradeCalculator class, compute the final average and letter grade for a particular student. The final average is calculated according to the following rules: 1) There are ten exams scored out of 100 points 2) The lowest exam score is...

  • solve in java using Eclipse Question 6 Given a student information: Name, Surname, Quiz grade, Homework...

    solve in java using Eclipse Question 6 Given a student information: Name, Surname, Quiz grade, Homework grade, Project grade, Midterm grade and Final exam grade, Show students whose average is grater then or equal to class average in ascending order. Student average is calculated using this formula: 153 of quiz +158 of homework + 20% of project + 25% of midterm + 25% of final exam. Input specification: In the first line you will be given a number of students...

  • Declare and initialize 4 Constants for the course category weights: The weight of Homework will be...

    Declare and initialize 4 Constants for the course category weights: The weight of Homework will be 15% The weight of Tests will be 35% The weight of the Mid term will be 20% The weight of the Fin al will be 30% Remember to name your Constants according to Java standards. Declare a variable to store the input for the number of homework scores and use a Scanner method to read the value from the Console. Declare two variables: one...

  • Plz help!! The programming language is C and could you write comments as well? Problem 2....

    Plz help!! The programming language is C and could you write comments as well? Problem 2. Calculate Grades (35 points) Arrays can be used for any data type, such as int and char. But they can also be used for complex data types like structs. Structs can be simple, containing simple data types, but they can also contain more complex data types, such as another struct. So you could have a struct inside of a struct. This problem deals with...

  • This is a C++ Program, I need the program broken up into Student.h, Student.cpp, GradeBook.h, GradeBook.cpp,...

    This is a C++ Program, I need the program broken up into Student.h, Student.cpp, GradeBook.h, GradeBook.cpp, and Main.cpp 1. The system must be able to manage multiple students (max of 5) and their grades for assignments from three different assignment groups: homework (total of 5), quizzes (total (total of 2) of 4), and exams 2. For each student record, the user should be able to change the grade for any assignment These grades should be accessible to the gradebook for...

  • using C++ language!! please help me out with this homework In this exercise, you will have...

    using C++ language!! please help me out with this homework In this exercise, you will have to create from scratch and utilize a class called Student1430. Student 1430 has 4 private member attributes: lastName (string) firstName (string) exams (an integer array of fixed size of 4) average (double) Student1430 also has the following member functions: 1. A default constructor, which sets firstName and lastName to empty strings, and all exams and average to 0. 2. A constructor with 3 parameters:...

  • Principles of Computer Science

    Question First, you need to design, code in Java, test and document a base class, Student. The Student class will have the following information, and all of these should be defined as Private: A. Title of the student (eg Mr, Miss, Ms, Mrs etc) B. A first name (given name) C. A last name (family name/surname) D. Student number (ID) – an integer number (of type long) E. A date of birth (in day/month/year format – three ints) - (Do NOT use the Date class from...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT