Fundamentos de Python

Fundamentos de Python

12th Grade

15 Qs

quiz-placeholder

Similar activities

JavaScript funciones, arreglos y, estructuras de control

JavaScript funciones, arreglos y, estructuras de control

12th Grade

20 Qs

Unit 3 Python TEST

Unit 3 Python TEST

11th - 12th Grade

20 Qs

MecaKids Programacion

MecaKids Programacion

KG - Professional Development

10 Qs

Vòng lặp for+while

Vòng lặp for+while

10th - 12th Grade

20 Qs

Types of Media

Types of Media

12th Grade

15 Qs

Python List Comprehension Review

Python List Comprehension Review

9th - 12th Grade

10 Qs

Print command Quiz Day2

Print command Quiz Day2

5th - 12th Grade

16 Qs

FOR and WHILE loop in Python

FOR and WHILE loop in Python

9th - 12th Grade

18 Qs

Fundamentos de Python

Fundamentos de Python

Assessment

Quiz

Computers

12th Grade

Medium

Created by

Jorge De Lara Hernández

Used 2+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué estructura se utiliza para tomar decisiones en Python?

Estructuras de control 'if', 'elif' y 'else'

Clases y objetos

Funciones y métodos

Estructuras de repetición 'for' y 'while'

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Escribe un ejemplo de una estructura if-else en Python.

if x >= 0: print('x es positivo') else: print('x es negativo')

if x > 10: print('x es mayor que 10') else: print('x es 10 o menor')

if x == 10: print('x es exactamente 10') else: print('x no es 10')

if x < 5: print('x es menor que 5') else: print('x es 5 o mayor')

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué palabra clave se utiliza para iniciar un bucle for en Python?

loop

foreach

wile

for

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cómo se define un bucle while en Python?

Un bucle while se define con 'while condición: bloque_de_código'.

Un bucle while se define con 'for condición: bloque_de_código'.

Un bucle while se define con 'repeat condición: bloque_de_código'.

Un bucle while se define con 'loop condición: bloque_de_código'.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué tipo de datos se utiliza para almacenar texto en Python?

int

float

str

list

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cómo se accede a un elemento de un array en Python?

Se accede a un elemento de un array usando array[indice].

Se accede a un elemento de un array usando array:indice.

Se accede a un elemento de un array usando array[indice+1].

Se accede a un elemento de un array usando array{indice}.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué es una condición anidada? Da un ejemplo.

if (a == 5) { // hacer algo }

if (a < 10) { // hacer algo }

if (b > 5) { if (a == 10) { // hacer algo } }

Un ejemplo de condición anidada es: if (a > 10) { if (b < 5) { // hacer algo } }.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?