Module 1 - Introduction to Python

Module 1 - Introduction to Python

Professional Development

12 Qs

quiz-placeholder

Similar activities

"Desafio Linux: Testando Seu Conhecimento em Sistemas Operaciona

"Desafio Linux: Testando Seu Conhecimento em Sistemas Operaciona

Professional Development

13 Qs

Lesson 7: Evolution of Smart Devices. XCODE. ADB

Lesson 7: Evolution of Smart Devices. XCODE. ADB

Professional Development

10 Qs

Semana 2 Conocimientos Básicos de Python

Semana 2 Conocimientos Básicos de Python

Professional Development

10 Qs

Ingat-ingat Lagi

Ingat-ingat Lagi

Professional Development

10 Qs

Service Strategy - Final Quizz

Service Strategy - Final Quizz

Professional Development

10 Qs

ACAOSA 95 FEBRUARY 2024 QUIZ

ACAOSA 95 FEBRUARY 2024 QUIZ

Professional Development

10 Qs

What do you Know about Roblox Building?

What do you Know about Roblox Building?

Professional Development

9 Qs

Quiz P&C End User Training Day 3

Quiz P&C End User Training Day 3

Professional Development

15 Qs

Module 1 - Introduction to Python

Module 1 - Introduction to Python

Assessment

Quiz

Instructional Technology

Professional Development

Hard

Created by

Shandy Roque

Used 2+ times

FREE Resource

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

colors = ["red", "orange", "yellow", "green", "blue", "indigo", "violet"]

Choose the answer that will output True.

colors[1] == red

colors[0] == "red"

colors[-1] == "red"

colors[2] == "red"

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

colors = ["red", "orange", "yellow", "green", "blue", "indigo", "violet"]

Choose the answer that will output False.

colors[0] == red

colors[-1] == "violet"

len(colors) == 7

len(colors) == 6

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

fruit_list = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]

How do you access the "orange"?

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

fruit_list = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]

print(fruit_list[2:5])

The output will be...

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

fruit_list = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]

print(fruit_list[:4])

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

fruit_list = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]

We need more fruits in the list. Can you please add "strawberry" in the list?

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

fruit_list = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]

I am allergic to kiwi. Maybe we can just replace this with papaya?

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?