Repaso Python

Repaso Python

9th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Aula 5

Aula 5

9th - 12th Grade

10 Qs

Vai trò của cơ quan và hệ cơ quan trong cơ thể người

Vai trò của cơ quan và hệ cơ quan trong cơ thể người

5th Grade - University

10 Qs

Python Variables Quiz

Python Variables Quiz

12th Grade

10 Qs

Cuestionario sobre Números Binarios

Cuestionario sobre Números Binarios

9th Grade - University

10 Qs

Peracangan dan Pengalamatan Jaringan

Peracangan dan Pengalamatan Jaringan

11th Grade

10 Qs

Informatika Kelas 9 Materi Algotirma dan Pemrograman

Informatika Kelas 9 Materi Algotirma dan Pemrograman

9th Grade

10 Qs

Câu lệnh rẽ nhánh

Câu lệnh rẽ nhánh

10th Grade

10 Qs

Quiz aula 8

Quiz aula 8

9th - 12th Grade

10 Qs

Repaso Python

Repaso Python

Assessment

Quiz

Information Technology (IT)

9th - 12th Grade

Medium

Created by

Ingenieria datos

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

¿Cuál de estas instrucciones en Python se ejecuta sin error?

export("Bienvenidos al curso")

echo("Bienvenidos al curso")

print[Bienvenidos al curso]

print("Bienvenidos al curso")

2.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

En Python, ¿cómo se crea una lista correctamente?

lista = (1, 2, 3, 4)

lista = {1, 2, 3, 4}

lista = [1, 2, 3, 4]

lista = <1, 2, 3, 4>

3.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

¿Qué imprimirá este código print(lista[0])? Si lista = [1, 2, 3]

0

1

2

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

¿Cómo se define correctamente una función en Python?

function suma(a, b): return a + b

fun suma(a, b) { return a + b }

define suma(a, b): return a + b

def suma(a, b): return a + b

5.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

¿Cuál de estas interfaces NO trabaja con Python?

Jupyter Notebook

Visual Studio Code

PyCharm

Excel VBA