Variables globales

Que permite realizar el bloque de poner global Name a ?
a) Permite llamar a una variable que esté declarada en una etiqueta global.

b) Permite llamar a una variable que no esté declarada en una etiqueta global.

c) Permite llamar varias variables que estén declaradas en una etiqueta global.

d) Permite llamar varias variables que no están declaradas en una etiqueta global.
AYUDA

What does the global Name block allow you to do?
a) Allows calling a variable that is declared in a global tag.

b) Allows calling a variable that is not declared in a global tag.

c) Allows calling several variables that are declared in a global tag.

d) Allows calling several variables that are not declared in a global tag.
AID

A is the best answer.

See the documentation: Variables blocks which says

initialize global name to

This block is used to create global variables. It takes in any type of value as an argument. Clicking on name will change the name of this global variable. Global variables are used in all procedures or events so this block will stand alone.

Global variables can be changed while an app is running and can be referred to and changed from any part of the app even within procedures and event handlers. You can rename this block at any time and any associated blocks referring to the old name will be updated automatically.