if grades were
B
C
C
B
C
C
A
how would you compute the letter grades with an excel
function to automatically formulate numerical grades from letter
grades?
Let’s say that these letter grades are entered in the cell A1 to A7. Basically they are in column A.
Now, if we want to provide them a score. For example, we could assign 80 to A, 70 to B, and 60 to C, then we need to create a data table where we can keep this relations.
Let’s say the table is from A12 to B14.
Now, let’s try to use the data from the table A12:B14 to fill the corresponding values in column B then we need to enter the formulas as
=LOOKUP(A1,$A$12:$B$14)
Then copy the value and paste it on all cells in the column B.
It will look like the picture below

The formulas used is shown below

C++ Grades . Write a program that uses enum types to assign letter grades that can be automatically converted to numerical grades. For this assignment, you'll create an enum type with the values F, D, C, B, and A, so the letter grades are associated with ordinal values 0, 1, 2, 3, and 4, respectively (which coincide with the quality points for that grade). Write a method assignCourseGrade(double grade) which takes a real number representing the grade for the class,...
3.1.1 Write a client that creates a symbol table mapping letter grades to numerical scores, as in the table below, then reads from standard input a list of letter grades and computes and prints the GPA (the average of the numbers corresponding to the grades). A+ | A | A- | B+ | B | B- | C+ | C | C- | D 433 4.00 3.67 3.33 3.00 2.67 2.33 2.00 1.67 1.00 0.00
Write a java client that creates a symbol table mapping letter grades to numerical scores, as in the table below, then reads from standard input a list of letter grades and computes and prints the GPA (the average of the numbers corresponding to the grades) USING SYMBOL TABLES. IN JAVA PLZ A+ A A- B+ B B- C+ C C- D+ D D F 4.35 4.00 3.65 3.35 3.00 2.65 2.35 2.00 1.65 1.35 1 .65 0.00
How do you write a program that translate a letter grade into a number grade. Letter grades are A, B, C, D, and F Possibly followed by + or - . Their number values are 4,3,2,1 and 0. There is no F+ nor for F-. A+ increases the numeric value of 0.3 and A - decreases it by 0.3 however an A= has value 4.0
IN C You will be creating a program to help a teacher calculate final grades for a class. The program will calculate a final letter grade base on a standard 90/80/70/60 scale. You will be taking input from a file that contains all of the names and grades of each student. You will find the average for each student and output each student's final letter grade. Your program should accept the filename from the command-line Add error checking to make...
A student earned grades of B, B, A, C, and D. Those courses had these corresponding numbers of credit hours: 4, 5, 1, 5, 4. The grading system assigns quality points to letter grades as follows: A = 4, B = 3, C = 2, D = 1, and F = 0. Compute the grade point average (GPA) and round the result to two decimal places. A. 2.37 B. 3.46 C. 9.00 D. 1.37
b) (2.5 marks) Write a Matlab user defined function that takes the letter grades (i.e. AABBC) as input and returns if the student entitled to the honor list or not. The student is considered in the honor s f he or she satisfies the following three conditions: a. An average GPA of 3.5 and above and b. At least two classes with A mark and e. no class with a mark less than C (i.e. no D or F) The...
1. Create a program that takes a numerical score and outputs a letter grade. 2. In this program, create two void functions titled makeScore and theGrade with an int argument. 3. The function makeScore should have a Reference parameter and theGrade should have a Value parameter. Note: Specific numerical scores and letter grades are listed below: 90-100 = Grade A 80-89 = Grade B 70-79 = Grade C 60-69 = Grade D 0-59 = Grade F 4. The function makeScore...
An English professor assigns letter grades on a test according to the following scheme A: Top 15% of scores B: Scores below the top 15 % and above the bottom 64 % C: Scores below the top 36 % and above the bottom 21 % D: Scores below the top 79 % and above the bottom 8 % F: Bottom 8% of scores Scores on the test are normally distributed with a mean of 76.5 and a standard deviation of...
A psychology professor assigns letter grades on a test according to the following scheme. A: Top 8% of scores B: Scores below the top 8% and above the bottom 60% C: Scores below the top 40% and above the bottom 18% D: Scores below the top 82% and above the bottom 9% F: Bottom 9% of scores Scores on the test are normally distributed with a mean of 67.7 and a standard deviation of 8.5. Find the numerical limits for...