Laboratorio

Laboratorio

12th Grade

7 Qs

quiz-placeholder

Similar activities

3TDS - Programação Frontend - Recuperação 2

3TDS - Programação Frontend - Recuperação 2

12th Grade

10 Qs

Մաքուր կոդ

Մաքուր կոդ

9th - 12th Grade

10 Qs

Arrays in CQuiz

Arrays in CQuiz

1st Grade - University

10 Qs

Kuis Algoritma dalam Bahasa Pemrograman

Kuis Algoritma dalam Bahasa Pemrograman

12th Grade

10 Qs

Quiz sobre Loop While em Python

Quiz sobre Loop While em Python

12th Grade

10 Qs

Quiz di Coding su Python

Quiz di Coding su Python

9th - 12th Grade

10 Qs

Repaso DDApp 25

Repaso DDApp 25

12th Grade

10 Qs

G9-Introduction to Python Selection

G9-Introduction to Python Selection

9th Grade - University

6 Qs

Laboratorio

Laboratorio

Assessment

Quiz

Information Technology (IT)

12th Grade

Medium

Created by

Zucely Camey

Used 1+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cómo se declaran las variables de números enteros en python?

int

float

srt

input

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cómo se declara los números con punto decimal?

int

float

srt

input

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Selecciona la opción que permite imprimir un texto en python

echo('texto a imprimir')

print("texto a imprimir")

console.log('texto a imprimir')
print.texto a imprimir

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Ciclos en python

For, While

Ciclos en Python son solo funciones
Los bucles en Python son solo 'do' loops
Python no tiene estructuras de control

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Condición de falso y verdadero en python...

En Python, True se representa como 0 y False como 1.
En Python, True es verdadero y False es falso.

If - Else

En Python, True es falso y False es verdadero.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Selecciona el código correcto.

n1=int(input("Ingrese un numero"))

n2=int(input("Ingrese un numero"))

r=n1+n2

print("Resultado es: ", r)

elegido.n1=int(input("Ingrese un numero"))

n2=int(input("Ingrese un numero"))

r=n1+n2

print("Resultado es: ", r)

n1=int(input("Ingrese un numero"))

r=n1+n2

print("Resultado es: ", r)

n1=int(input("Ingrese un numero"))

n2=int(input("Ingrese un numero"))

r=n1+n2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Forma correcta de realizar una operación en python

n==1+2

n=1+2

n=numero1+numero2

n=7+6