Module 1 - Introduction to Python

Module 1 - Introduction to Python

Professional Development

12 Qs

quiz-placeholder

Similar activities

OER Comprehension Check

OER Comprehension Check

Professional Development

10 Qs

ETF Trivia

ETF Trivia

Professional Development

8 Qs

Interesting Bird Facts

Interesting Bird Facts

KG - Professional Development

11 Qs

Fun with Vowels for Kids

Fun with Vowels for Kids

Professional Development

10 Qs

FLOWERS

FLOWERS

Professional Development

8 Qs

Semana 4 GEN-39

Semana 4 GEN-39

Professional Development

10 Qs

Documentation and finance

Documentation and finance

Professional Development

10 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?