New game
Download
Get Academic Plan
Share game
Integrate it into your platform

You can integrate the game into an LMS compatible with LTI 1.1 or LTI 1.3 such as Canvas, Moodle, or Blackboard. This way, the scores will be automatically saved into the platform’s gradebook.
Download
You have exceeded the maximum number of games you can integrate into Google Classroom with your current Plan.

To integrate as many games as you want in Google Classroom, you need an Academic Plan or a Commercial Plan.

You have exceeded the maximum number of games you can integrate into Microsoft Teams with your current Plan.

To integrate as many games as you want in Microsoft Teams, you need an Academic Plan or a Commercial Plan.

Downloading games is an exclusive feature for users with an Academic Plan or a Commercial Plan.

Get your Academic Plan or your Commercial Plan now and start integrating your games into your LMS, website or blog.

If you wish, you can download a demo game here and test its integration:

Bucle en Programación

Quiz

Played 0

About this activity

Quiz sobre bucles

Created by

Panama

Download the paper version to play

Make your own free game from our game creator
Compete against your friends to see who gets the best score in this game

Top Games

%
Anonymous
Anonymous
%
%
%
You have exceeded the maximum number of games you can print with your current Plan.

To print as many games as you want, you need an Academic Plan or a Commercial Plan.

Print your game
Bucle en Programación
 

Bucle en ProgramaciónOnline version

Quiz sobre bucles

by Moises Chavarria
1

¿Cuál es el propósito principal de un bucle en programación?

2

¿Cuál es la diferencia fundamental entre un bucle for y un bucle while?

3

¿Sobre qué tipos de objetos se utiliza comúnmente un bucle for para iterar?

4

En la sintaxis for variable in secuencia:, ¿qué representa la variable y es su nombre importante?

5

¿Qué determina cuándo se detiene un bucle while?

6

¿Qué es un "bucle infinito" y con qué tipo de bucle es un riesgo más común?

7

¿Por qué es crucial actualizar la variable de control (como la x en el ejemplo) dentro de un bucle while?

8

¿Qué sucede si la condición de un bucle while es False (falsa) desde el principio?

9

En el ejemplo del video, ¿por qué el bucle while x < 5: se detiene sin imprimir el número 5?

10

¿Podrías usar un bucle for para contar de 0 a 100 sin tener una lista predefinida?

11

Predice la salida: ¿Qué imprimirá el siguiente código? ```python fruta = "banana" for letra in fruta: print(letra + "-") ```

12

Identifica el error: ¿Qué problema tiene el siguiente código? ```python x = 0 while x < 10: print("Hola") ```

13

Elige el bucle: Si quisieras pedirle al usuario su contraseña hasta que la ingrese correctamente, ¿qué bucle ( `for` o `while` ) sería más apropiado y por qué?

14

Predice la salida: ¿Qué imprimirá el siguiente código? ```python x = 10 while x > 7: print(x) x = x - 1 ```

15

Predice la salida: ¿Qué imprimirá el siguiente código? ```python numeros = [10, 20, 30] for n in numeros: print(n / 2) ```

16

Identifica el error: ¿Cuál es el error de sintaxis en esta línea de código? ```python for num in [1, 2, 3] print(num) ```

17

Elige el bucle: Si tienes una lista de nombres de estudiantes y quieres imprimir un saludo para cada uno, ¿qué bucle usarías?

18

Predice la salida: ¿Qué imprimirá el siguiente código? ```python x = 1 while x < 8: print(x) x = x * 2 ```

19

Predice la salida: ¿Cuántas veces se imprimirá la palabra "Loop"? ```python x = 5 while x < 5: print("Loop") x = x + 1 ```

20

Conversión: ¿Cómo escribirías el siguiente bucle `for` usando la lógica de un bucle `while`? ```python # Bucle for original for num in [1, 2, 3]: print(num) # ¿Cómo sería con un bucle while? # datos = [1, 2, 3] # indice = ... # while ... : # ... ```

Are you sure you want to leave the page?

If you leave the page, you will lose your game progress.