QUIZ (Inglese)
Create a code for Google Apps Script to create a form turned into a quiz with [10 multiple-choice questions] based on the attached document. The form [must/does not need to] collect email addresses. The form must be turned into a Quiz with the correct answers for each individual question. Insert 1 point in the answer key for each individual question. Follow this model I am providing as an example:
function createQuizForm() {
// Create a new form
var form = FormApp.create('English Language Origins Quiz');
// Turn on quiz mode
form.setIsQuiz(true);
// Collect email addresses
form.setCollectEmail(true);
// Create the first multiple-choice question
var question1 = form.addMultipleChoiceItem();
question1.setTitle('1. In which year did the Saxons, Jutes, and Frisians arrive in Britain?');
question1.setChoices([
question1.createChoice('410 AD'),
question1.createChoice('449 AD', true), // Correct answer
question1.createChoice('500 AD'),
question1.createChoice('600 AD')
])
.setRequired(true)
.setPoints(1); // Assign 1 point
// Create the second multiple-choice question
var question2 = form.addMultipleChoiceItem();
question2.setTitle('2. What did the Saxons bring with them to Britain?');
question2.setChoices([
question2.createChoice('Only their swords'),
question2.createChoice('Their culture and language', true), // Correct answer
question2.createChoice('Roman traditions'),
question2.createChoice('A new religion')
])
.setRequired(true)
.setPoints(1); // Assign 1 point
// Create the third multiple-choice question
var question3 = form.addMultipleChoiceItem();
question3.setTitle('3. Which language influenced the birth of Old English?');
question3.setChoices([
question3.createChoice('Celtic', true), // Correct answer
question3.createChoice('Latin'),
question3.createChoice('French'),
question3.createChoice('Greek')
])
.setRequired(true)
.setPoints(1); // Assign 1 point
// Log the form URL
Logger.log("Form created successfully: " + form.getEditUrl());
}
Once the code is created, check for any syntax errors that would prevent Google Apps Script from generating the form. Follow the procedure step by step.
Attached Document
[Attach Document Here]