Understanding Python Lists and More

Understanding Python Lists and More

12th Grade

10 Qs

quiz-placeholder

Similar activities

Python Codehs

Python Codehs

7th - 12th Grade

10 Qs

KODEKIDDO HACK #MLH3

KODEKIDDO HACK #MLH3

4th Grade - University

10 Qs

Python - Print, Variabel, dan Type Data

Python - Print, Variabel, dan Type Data

12th Grade

15 Qs

Kiểm tra bài cũ lớp 10

Kiểm tra bài cũ lớp 10

9th - 12th Grade

11 Qs

Intro to Python Test

Intro to Python Test

3rd - 12th Grade

11 Qs

Câu hỏi Python

Câu hỏi Python

9th - 12th Grade

10 Qs

Dictionary in Python

Dictionary in Python

11th - 12th Grade

10 Qs

Chapter 1 Python

Chapter 1 Python

8th Grade - University

12 Qs

Understanding Python Lists and More

Understanding Python Lists and More

Assessment

Quiz

Computers

12th Grade

Hard

Created by

David Hunt

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to create a list in Python?

`my_list = (1, 2, 3, 4)`

`my_list = [1, 2, 3, 4]`

`my_list = {1, 2, 3, 4}`

`my_list = "1, 2, 3, 4"`

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? ```python my_tuple = (10, 20, 30) print(my_tuple[1]) ```

`10`

`20`

`30`

`1`

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements about Python dictionaries is true?

Dictionaries are ordered collections of values.

Dictionaries store data as key-value pairs.

Dictionaries can only have integer keys.

Dictionaries are created using square brackets.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the value of `result` after executing the following code? ```python numbers = [2, 4, 6, 8] result = numbers[2] + numbers[0] ```

`6`

`8`

`10`

`12`

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to write a for loop that prints each item in a list called `fruits`?

`for fruit in fruits: print(fruit)`

`for fruit of fruits: print(fruit)`

`for (fruit; fruits): print(fruit)`

`for fruit to fruits: print(fruit)`

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? ```python my_dict = {'apple': 3, 'banana': 5} print(my_dict['banana']) ```

`3`

`5`

`'banana'`

`None`

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements about tuples is correct?

Tuples are mutable.

Tuples can contain elements of different data types.

Tuples are created using curly braces.

Tuples cannot be indexed.

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?