answersLogoWhite

0


Best Answer

You can't since you already have a C with the low final test score. Talk to your prof and see if he has any answers.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: If I have gotton a B average in a class all four quarters and I fail my final exam with a 26 what will this drop me to a C. My final is worth 9 of my grade. What do I have to get to keep a B?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

My final exam is worth 25 of my final average in the class my average in the class right now is an 84 but its not with the 75 i got on my final How do i average it all together?

Since the final is only worth 25 percent of your grade, you would add your class average of 84 three times. Then take that total of 252 and add it to your exam grade of 75 for a total of 327. Divide this number by 4 to get your final average of 81.75 percent.


If the final is 15 percent of grade and have an average of 100 what score do you need to get at least 90 in the class?

You do not even need to get a 30% on the final. If you have a 100% in the class and get a 0% on the final, you willl still have an 85% in the class.


Is it a good thing for a final class average to be a 66 percent?

Not good enough, I am afraid.


How do you prevent class extending in java?

Declare the class as final. final class A{ ... }


When do you declare a class as final?

By using the final keyword in the class declaration statement. Ex: public final class Test {...}


A final class can have instances?

Yes. You cannot inherit a final class but very well instantiate a final class


C in math what do you need on the finals to get an A?

Find out what percentage of your total grade the final is worth. Also find the percentage of any quizes, homeworks, and particiation. Here is an example.. What score do I need If I want a 90% final grade, The final is worth 25% of the class, I have a 85% average on homework which is 50% of the class, and 76% average on quizzes which are 25% of the class. x=score on the final needed for 90% 90=x(.25)+85(.5)+76(.25) Do you see that the average grades are left in whole numbers, where the percentage of the class has been turned into a decimal? Multiply it all out and solve for x!


Discuss final method and final classes?

a method declared final can not be overridden, and a class declared as final can not be extended by its sub class.


How can you create a class which cannot be inheritable?

Declare it final.


Why would you make a class final in java?

You would make a class Final in Java if you do not want anybody to inherit the features of your class. If you declare a class as Final, then no other class can extend this class. Example: public final class X { .... } public class Y extends X { .... } Here Y cannot extend X because X is final and this code would not work.


What are final class?

class is identifier


Difference between abstract and final class?

Abstract class is built to promote inheritance whereas a final class is built to avoid inheritanceAn Abstract class can be extended by another class whereas a final class cannot be extended