Command Line
Loops/Control
Scratch
Intro Python
Boolean Logic
100

Command that opens up the python interpreter

Comando que abre el intérprete de python


What is "python"?

Que es "Python"?

100

The three different kinds of loops in Scratch.

Los tres tipos diferentes de loops en Scratch. 

What is "repeat-until", "repeat x times", and "forever"?

Que es "repeat-until", "repeat x times", and "forever"?

100

The blocks I need to send and receive messages to other sprites.

Los bloques que necesito para enviar y recibir mensajes a otros sprites. 

What is "broadcast" and "when I receive"?

¿Qué es "broadcast" y "when I receive"?

100

The difference between 2*3 and 2**3.

La diferencia entre 2 * 3 y 2 ** 3.

What is 6 (multiplication) and 8 (exponents)?

¿Qué es 6 (multiplicación) y 8 (exponentes)?
100

A boolean variable only holds these values.

Una variable booleana solo mantiene estos valores.


what is true and false?

¿Qué es verdadero y falso?


 

200

A command used to change the current directory you're in.

Un comando usado para cambiar el directorio actual en el que estás a otro.


 

what is cd "folder_name"?

Que es "cd nombre_de_la_carpeta"?

200

A single repetition of a process.

Una sola repetición de un proceso. 

What is an iteration?

¿Qué es una iteración?

200

A block I need to keep the sprite from leaving the stage.

Un bloque que necesito para evitar que el sprite salga del escenario. 

What is "if on edge, bounce"?

Que es "if on edge, bounce"? 

200

The result of: true or false.

El resultado de: true or false.

what is an error?

Que es un error? 

200

Both conditions need to be True. 

Only one condition needs to be True.

The opposite of what it means.

Ambas condiciones deben ser verdaderas.
Solo una condición debe ser verdadera.
Lo contrario de lo que significa. 

What is and, or, not? 

Que es y, o, no? 

300

A command used to move "up" a tree or a directory back. 

Un comando utilizado para mover "arriba" un árbol o un directorio de nuevo.


What is "cd .." ?

Que es "cd .." ?

300

The time a repeat-until loops is useful and the time a repeat-times loop is useful.

El tiempo en que se usa "repite un ciclo hasta que sea útil" y el tiempo en que se usa "repite x veces".

What is " knowing when something should stop but not exactly" and "knowing exactly how many times you should repeat something"?

¿Qué es "saber cuándo debe detenerse algo pero no exactamente" y "saber exactamente cuántas veces debe repetir algo"?

300

The different ways I can get user input in a game.

Las diferentes formas en que puedo obtener la entrada del usuario en un juego. 

Hint: There are 3! Hay thres!

what is/que es: 

1. Arrow keys/teclas de flecha

2. Mouse Clicking/Hacer clic con el ratón

3. Asking a question with an ask block/ Hacer una pregunta con el bloque de pregunta

300

Line of code that displays what you put in it.

Línea de código que muestra lo que pones en él.

What is "print()"?

Que es "print()"?

300

The result of: ((NOT True) OR (NOT False)) AND ((NOT TRUE) AND (NOT FALSE))

What is False?

Que es falso?

400

A command used to list all the files in the current directory you're in.

Un comando utilizado para listar todos los archivos en el directorio actual en el que se encuentra.

What is "dir"?

Que es "dir"?

400

The only time the code inside of an "if statement" runs. The only time the code inside of an "else statement" runs.

La única vez que se ejecuta el código dentro de una "if statement. La única vez que se ejecuta el código dentro de una "else statement". 

What is "when condition is true" and "when condition is false"?

¿Qué es "cuando la condición es verdadera" y "cuando la condición es falsa"?

400

A Scratch feature that allows users to drag and drop costumes, sprites, sounds, and scripts from other projects into it and then drag and drop them easily into their project.

Una función Scratch que permite a los usuarios arrastrar y soltar disfraces, sprites, sonidos y scripts de otros proyectos en ellos y luego arrastrarlos y soltarlos fácilmente en su proyecto (propio). 

What is a backpack? 

Que es un "backpack"?

400

The difference between "%" and "//".

La differencia entre "%" y "//".

What is the operator that calculates remainder and the operator that divides to a whole number? 


¿Cuál es el operador que calcula lo que queda y el operador que se divide en un número entero?

% --> modulo operator/operador de modulo

// --> floor division/división del piso

400

The result of: NOT False OR True AND False

What is true?

Que es verdad? 

HINT: ORDER OF OPERATIONS!
SUGERENCIA: ORDEN DE OPERACIONES!


500

A file system on a computer resembles this hierarchical structure.

Un sistema de archivos en una computadora se parece a esta estructura jerárquica.

 

What is a tree? 

Que es un Arbol? 

500

An example of a nested loop in real life.

Un ejemplo de un loop adentro de otro en la vida real.

What is nested loop example? (e.g. cashier checking items out.) 

Ejemplo: un cajero escaneando cada artículo de compra y haciendo esto para cada cliente

500

The same thing as "move 10 steps."

Lo mismo que "move 10 steps."

What is "change x by 10"?

Que es "change x by 10"?

500

The result of:  ("1 ==1" AND "2 < 1") OR ("4%2 == 0").

What is True?

Que es verdadero?

500

The result of: NOT(NOT(True AND ((NOT False) OR False) AND (False OR False)))

What is False?

Que es falso?