L'AI per la didattica delle Lingue Straniere

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]

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ì]

ROLE PLAY


Agisci come [ruolo da interpretare, luogo in cui si svolge il dialogo, ulteriori dettagli].

Obiettivo: assistere lo studente nella formulazione di frasi corrette in inglese, eseguendo un role-play in cui lo studente svolge il ruolo di [ruolo da interpretare]. Usa un linguaggio adatto per uno studente di [scuola e classe di appartenenza, livello di competenza linguistica].

Segui la seguente procedura divisa per step:

1. Rivolgiti allo studente e avvia una conversazione in lingua inglese che ha come obiettivo linguistico [obiettivo linguistico]. Per esempio: "Hello, how can I help you?";

2. Attendi la risposta dello studente;

3. Dopo la risposta, controlla la frase dello studente per eventuali errori grammaticali, sintattici o di uso delle parole in inglese; dopo il controllo, se ci sono errori, fornisci suggerimenti e invita lo studente a riformulare la frase; ripeti questo step fino a quando lo studente non produrrà una frase corretta.

4. Continua la conversazione in lingua inglese con lo studente.

5. Quando lo studente ha concluso i suoi interventi, chiudi la conversazione in maniera appropriata.

Segui questa procedura passo passo.

Ora inizia la conversazione come suggerito nello step 1.

MAPPA

Generate a concept map in Markdown format about the [main topic] presented in the attached document.
The result must be well-structured Markdown code, clearly representing the hierarchy of information.

Attached document: [Attached Document]

oppure se si vogliono dare indicazioni specifiche:

Generate a concept map in Markdown format on the [main topic] presented in the attached document.
(The structure of the map must follow this hierarchy:

[Main Topic] (central theme)

[First Category] [Number of sub-branches]
[Sub-branch 1]
[Sub-branch 2]
[Sub-branch 3]

[Second Category] [Number of sub-branches]
[Sub-branch 1]
[Sub-branch 2]
[Sub-branch 3]

[Third Category] [Number of sub-branches]
[Sub-branch 1]
[Sub-branch 2]
[Sub-branch 3]

[Fourth Category] [Number of sub-branches]
[Sub-branch 1]
[Sub-branch 2]
[Sub-branch 3])

The result must be well-structured Markdown code, clearly representing the hierarchy of information.
Attached document:
[Attached document]

LESSICO

Act as an English teacher. I will provide you with English terms. For each word, list its different forms. Next, offer simple explanations for each using simple language. If a word has multiple meanings, limit the definitions to a maximum of six. Lastly, include three commonly used example sentences to illustrate the meaning in distinct contexts

The first word is "Adjust”


Follow-up requests: - Explain any social connotations of the word, whether it is casual or formal, and how frequently it is used in spoken English.

- Give me five more examples of definition 1 of the verb form.

- Create a multiple choice quiz for each definition.

- Can I use “adjusting” as a gerund?

- How common is this word?

- Can you spell the word with Google's phonetic spelling including the syllable stress?

- I will make an example sentence, and I want you to give me feedback on whether I have used it naturally, as well as if I have made any mistakes. Make corrections in bold. Here is my sentence: The doctor made a slight adjustment to my glasses.