Comunicare e Creare con l'AI (Allende)

Questo è lo spazio digitale per la pubblicazione dei materiali didattici creati durante il Percorso Formativo.

Cliccate su Modifica come coautore in alto a destra e poi sul pulsante + Scheda e nominate la scheda col vostro Cognome.

Ricordarsi di salvare sempre le modifiche in alto a destra della pagina, Netboard NON salva automaticamente!

QUIZ (Spagnolo)

Crea un código para Google Apps Script para generar un formulario convertido en un cuestionario con [10 preguntas de opción múltiple] basado en el documento adjunto. El formulario [debe/no necesita] recopilar direcciones de correo electrónico. El formulario debe convertirse en un cuestionario con las respuestas correctas para cada pregunta individual. Inserta 1 punto en la clave de respuestas para cada pregunta individual. Sigue este modelo que te proporciono como ejemplo:
function createQuizForm() {
// Crear un nuevo formulario
var form = FormApp.create('Cuestionario sobre los Orígenes del Idioma Inglés');
// Activar el modo cuestionario
form.setIsQuiz(true);
// Recopilar direcciones de correo electrónico
form.setCollectEmail(true);
// Crear la primera pregunta de opción múltiple
var question1 = form.addMultipleChoiceItem();
question1.setTitle('1. ¿En qué año llegaron los sajones, jutos y frisones a Gran Bretaña?');
question1.setChoices([
question1.createChoice('410 d.C.'),
question1.createChoice('449 d.C.', true), // Respuesta correcta
question1.createChoice('500 d.C.'),
question1.createChoice('600 d.C.')
])
.setRequired(true)
.setPoints(1); // Asignar 1 punto
// Crear la segunda pregunta de opción múltiple
var question2 = form.addMultipleChoiceItem();
question2.setTitle('2. ¿Qué trajeron los sajones consigo a Gran Bretaña?');
question2.setChoices([
question2.createChoice('Solo sus espadas'),
question2.createChoice('Su cultura y lenguaje', true), // Respuesta correcta
question2.createChoice('Tradiciones romanas'),
question2.createChoice('Una nueva religión')
])
.setRequired(true)
.setPoints(1); // Asignar 1 punto
// Crear la tercera pregunta de opción múltiple
var question3 = form.addMultipleChoiceItem();
question3.setTitle('3. ¿Qué idioma influyó en el nacimiento del inglés antiguo?');
question3.setChoices([
question3.createChoice('Celta', true), // Respuesta correcta
question3.createChoice('Latín'),
question3.createChoice('Francés'),
question3.createChoice('Griego')
])
.setRequired(true)
.setPoints(1); // Asignar 1 punto
// Registrar la URL del formulario
Logger.log("Formulario creado con éxito: " + form.getEditUrl());
}
Una vez que se haya creado el código, verifica si hay errores de sintaxis que impidan que Google Apps Script genere el formulario. Sigue el procedimiento paso a paso.
Documento adjunto
[Documento adjunto aquì]
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]
MAPPA
Genera una mappa concettuale in formato Markdown su [argomento principale] presente nel documento allegato.
Il risultato deve essere un codice Markdown ben strutturato, con una rappresentazione chiara della gerarchia delle informazioni.
Documento allegato
[Documento allegato]

oppure se si vogliono dare indicazioni specifiche:
Genera una mappa concettuale in formato Markdown su [argomento principale] presente nel documento allegato.
(La struttura della mappa deve seguire questa gerarchia:
  • [Argomento Principale] (tema centrale)
    • [Prima Categoria] [Numero di sottorami]
      • [Sottoramo 1]
      • [Sottoramo 2]
      • [Sottoramo 3]
    • [Seconda Categoria] [Numero di sottorami]
      • [Sottoramo 1]
      • [Sottoramo 2]
      • [Sottoramo 3]
    • [Terza Categoria] [Numero di sottorami]
      • [Sottoramo 1]
      • [Sottoramo 2]
      • [Sottoramo 3]
    • [Quarta Categoria] [Numero di sottorami]
      • [Sottoramo 1]
      • [Sottoramo 2]
      • [Sottoramo 3])
Il risultato deve essere un codice Markdown ben strutturato, con una rappresentazione chiara della gerarchia delle informazioni.
Documento allegato
[Documento allegato]
Prompt Per Codice Google Apps Script Per Creare Quiz
Prompt in inglese per generare il codice da utilizzare in Google App Script per caricare in Quiz su Google Forms:

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]