Understanding Python Lists and More

Understanding Python Lists and More

12th Grade

10 Qs

quiz-placeholder

Similar activities

CodeHS APCSP Python

CodeHS APCSP Python

10th - 12th Grade

12 Qs

Day 7 Practice on Dictionaries

Day 7 Practice on Dictionaries

12th Grade

14 Qs

Python_R

Python_R

2nd Grade - Professional Development

8 Qs

Python Lists Dictionaries Tuple Set

Python Lists Dictionaries Tuple Set

12th Grade

10 Qs

Problem Solving using Python and R - UNIT II - Tuples

Problem Solving using Python and R - UNIT II - Tuples

12th Grade

15 Qs

Python List Basics

Python List Basics

12th Grade

14 Qs

Tuples

Tuples

11th - 12th Grade

15 Qs

CodeHS

CodeHS

10th - 12th Grade

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?