Bacheca Materiali (Donatelli-Pascal)

Questo è lo spazio digitale per la pubblicazione dei materiali didattici creati durante il Laboratorio di Metodologia didattica innovativa.

Per visualizzare le schede dei corsisti, cliccare sulle tre linee a sinistra di fianco a "Bacheca Materiali (Donatelli-Pascal)"

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]
Crea un codice per Google Apps Script per creare un form trasformato come quiz con [10] domande a scelta multipla sul documento allegato. Il modulo [deve/non deve] raccogliere indirizzi email. Il modulo deve essere trasformato in Quiz con le risposte corrette per ogni singola domanda. Inserisci 1 punto nella chiave di risposta di ogni singola domanda.
Segui questo modello che ti fornisco come esempio:
function createForm() { // Crea un nuovo modulo var form = FormApp.create('Il tuo modulo con una domanda'); form.addParagraphTextItem() .setTitle('Come puoi organizzare il tuo studio se hai una verifica tra due settimane e 20 pagine da studiare?') .setRequired(true); // Aggiungi una domanda a casella di controllo form.addCheckboxItem() .setTitle('Quali sono i tuoi frutti preferiti?') // Modifica l'argomento a piacere .setChoiceValues(['Mela', 'Banana', 'Arancia', 'Fragola']); // Opzioni // Aggiungi una domanda a scala lineare form.addScaleItem() .setTitle('Quanto sei soddisfatto dell’apprendimento online?') .setBounds(1, 5) .setLabels('Per niente soddisfatto', 'Molto soddisfatto') .setRequired(true); // Domande chiuse var question3 = form.addMultipleChoiceItem(); question3.setTitle('3. Cosa NON è consigliata fare durante lo studio?'); question3.setChoices([ question3.createChoice('Spegnere il cellulare'), question3.createChoice('Studiare tutto il materiale il giorno prima'), // Corretta question3.createChoice('Scegliere una stanza tranquilla') ]).setRequired(true); // Notifica all'utente Logger.log("Modulo creato con successo: " + form.getEditUrl()); }
Una volta creato il codice controlla che non ci siano errori di sintassi che impedirebbero a Google Apps Script di generare il form. Esegui la procedura passo passo