answersLogoWhite

0


Best Answer

You have to format the cells to show the letter associated worth the percentage, similar to how you would if using an Excel spreadsheet.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you use Google spreasheet to grade a student Like if a student got 67 i want to use A B C D to show that 67 is a D Thank you?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can a sixth grade advanced student make a higher grade than a seventh grade basic student?

Yes, it is possible for a sixth grade advanced student to achieve a higher grade than a seventh grade basic student. Grades are based on individual performance and understanding of the material, so a dedicated and high-achieving student in a lower grade level can outperform a student in a higher grade with less proficiency.


How is a student's grade point average figured?

By calculating the average grade a student earned in school


Do you capitalize fourth when saying ..He is a Fourth Grade student?

No. it's not necessary. It should be --- He is a fourth grade student.


C plus plus program that display student name course and grade using arrays of strings?

enum field { name, course, grade }; std::string student[3]; student[name] = "Joe Bloggs"; student[course] = "C++ Programming"; student[grade] = "A+";


What did Benjamin Banneker do for the society?

I don't know A 3rd grade student I don't know A 3rd grade student


What is your math grade going to be?

I am a straight 'A' student. I am a straight A student.


What is the scientific name of the Canadian night crawlers?

Dendrobena veneta is the name for a Canadia nightcrawler. Thank you for asking this question. 5th grade student from Oconto Falls Elementry school Wisconsin.


Can i go on the internet to see if a student passed to the next grade?

yes you may see if the student passed to the next grade


Who is the oldest student government president?

Its because the highest grade level your in the smarter you are ,and teachers and staff can count on you to rule the whole school if some-thing happens to the teachers!!Thank You and I hope you'll make the right choice and be the president of the school, if your in the 5th grade!!


In ninth grade how old would you be?

If you are a 9th grade student you are often 14 or 15 depending on whether the student has been held back and when the student started school.


How should you grade physical education?

Grade based on the student's participation.


I am making a C plus plus program for a programming class that takes in 5 grades for 7 students averages them gets a letter grade and displays it all in a table How do you set up a table for variables?

The following example sets up a two-dimensional array, initialises it with some pseudo-random data, and then prints the table and the averages. #include<iostream> #include<time.h> int main() { const int max_students = 7; const int max_student_grades = 5; const int max_grades = 6; const char grade[max_grades]={'A','B','C','D','E','F'}; srand((unsigned) time(NULL)); // Initialise the array with pseudo-random grades: int table[max_students][max_student_grades]; for(int student=0; student<max_students; ++student) { for(int student_grade=0; student_grade<max_student_grades; ++student_grade) { table[student][student_grade] = rand()%max_grades; } } // Print the table and average the results. int overall=0; for(int student=0; student<max_students; ++student) { int average=0; std::cout<<"Student #"<<student+1; for(int student_grade=0; student_grade<max_student_grades; ++student_grade) { std::cout<<" Grade #"<<student_grade+1<<": "<<grade[table[student][student_grade]]<<", "; average+=table[student][student_grade]; } std::cout<<" Average: "<<grade[average/max_grades]<<std::endl; overall+=average; } std::cout<<"Overall average: "<<grade[overall/max_grades/max_students]<<std::endl; return(0); } Example output: Student #1 Grade #1: A, Grade #2: E, Grade #3: D, Grade #4: E, Grade #5: F, Average: C Student #2 Grade #1: E, Grade #2: D, Grade #3: E, Grade #4: E, Grade #5: E, Average: D Student #3 Grade #1: D, Grade #2: A, Grade #3: D, Grade #4: B, Grade #5: A, Average: B Student #4 Grade #1: C, Grade #2: B, Grade #3: A, Grade #4: A, Grade #5: B, Average: A Student #5 Grade #1: E, Grade #2: D, Grade #3: C, Grade #4: F, Grade #5: E, Average: D Student #6 Grade #1: C, Grade #2: D, Grade #3: A, Grade #4: F, Grade #5: A, Average: B Student #7 Grade #1: B, Grade #2: D, Grade #3: F, Grade #4: B, Grade #5: C, Average: C Overall average: C