Laboratorio

Laboratorio

12th Grade

7 Qs

quiz-placeholder

Similar activities

Kiến thức về hàm print() trong Python

Kiến thức về hàm print() trong Python

2nd Grade - University

9 Qs

python

python

9th Grade - University

5 Qs

Quiz aula 8

Quiz aula 8

9th - 12th Grade

10 Qs

Python Variables Quiz

Python Variables Quiz

12th Grade

10 Qs

Python - 2C

Python - 2C

9th - 12th Grade

10 Qs

4.C - Python

4.C - Python

9th - 12th Grade

10 Qs

prgramming

prgramming

6th Grade - University

11 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