Repaso Algoritmos

Repaso Algoritmos

University

5 Qs

quiz-placeholder

Similar activities

Funciones y While Python - TC1028

Funciones y While Python - TC1028

University

10 Qs

Plot the Code

Plot the Code

University

10 Qs

PROYECTOS CON MICROCONTROLADORES_Semana08

PROYECTOS CON MICROCONTROLADORES_Semana08

University

10 Qs

JAVA OO - Semana 2

JAVA OO - Semana 2

University

10 Qs

Java Fundamentals - Test 4

Java Fundamentals - Test 4

University

5 Qs

Python Basics

Python Basics

6th Grade - University

10 Qs

quiz programacion

quiz programacion

University

8 Qs

Programación

Programación

University

10 Qs

Repaso Algoritmos

Repaso Algoritmos

Assessment

Quiz

Computers

University

Medium

Created by

luz guerrero

Used 3+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué imprime este código?

x = "5" + "3"

print(x)

8

53

Error

35

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cuál es el tipo de dato de y = 3.14?

int

str

float

str

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué estructura se usa para decisiones múltiples (ej. "si no, si...")?

if-else

for

if-elif-else

while

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cuántas veces imprime "Hola" este bucle?

for i in range(3):

print("Hola")

1

2

3

4

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué hace este código?

x = 10

while x > 0:

x -= 1

Imprime números del 10 al 1

Decrementa x hasta que sea 0

Crea un bucle infinito

Nada, tiene un error