Create a code for Google Apps Script to create a form turned into a quiz with the multiple-choice questions in the attached document. The form must 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 createOldEnglishQuiz() { // Create a new form with a title. var form = FormApp.create("Old English Comprehension Quiz"); // Set the form to collect email addresses. form.setCollectEmail(true); // Turn the form into a quiz. form.setIsQuiz(true); // Question 1 var item1 = form.addMultipleChoiceItem(); item1.setTitle("1. During which time period was Old English spoken?") .setChoices([ item1.createChoice("400–800 AD", false), item1.createChoice("500–1100 AD", true), item1.createChoice("1200–1500 AD", false) ]) .setPoints(1); // Question 2 var item2 = form.addMultipleChoiceItem(); item2.setTitle("2. Which of the following languages is most closely related to Old English?") .setChoices([ item2.createChoice("Old Norse", false), item2.createChoice("Old Frisian", true), item2.createChoice("Latin", false) ]) .setPoints(1); // Question 3 var item3 = form.addMultipleChoiceItem(); item3.setTitle("3. Which of these Germanic tribes influenced Old English?") .setChoices([ item3.createChoice("Celts", false), item3.createChoice("Vikings", false), item3.createChoice("Angles, Saxons, and Jutes", true) ]) .setPoints(1); Logger.log("Form created with URL: " + form.getPublishedUrl()); }
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 Quiz Here]