Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Assigning each answer with different points in Google Forms

Tags:

google-forms

I embedded Google Forms to my blog and I want to assign different points to each answer in the multiple choice.

A = 1 point, B = 2 points, C = 3 points, D = 4 points.

There is no such feature in Google Forms. Are there any add-ons that will help me do this or how would I use app scripts to assign each answer worths different points?

like image 207
HappySnowman Avatar asked Nov 12 '16 19:11

HappySnowman


People also ask

Can I assign 0.5 points in Google Forms?

If an answer is partially correct, you can give a half or quarter point, making grades more precise. Like all grades in Google Forms, these are automatically added up and can be synced with Google Classroom.


1 Answers

Don't know if it will be any help What I've done is a duplicate of the spreadsheet containing the answers, keeping only the headers Below each questions, i listed the possible answers, a delimiter and the values basically something like that Is this answer useful? Yes|10 Perhaps|5 No|0 I scripted a loop used to look for each question, then I looped down in the column, splitting ech value to look for the possible answer, and cumulating the points as a total score. Actually, I also added a group score.

BR

like image 127
Seb Avatar answered Oct 11 '22 17:10

Seb