Week 14 - Tuples

Week 14 - Tuples

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

37 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Mia, Ava, and Mason are having a debate about Python data structures. Mia says both lists and tuples are mutable, Ava thinks lists are mutable whereas tuples are immutable, and Mason believes both lists and tuples are immutable. Who is correct?

Back

Ava: List is mutable whereas tuples are immutable.

2.

FLASHCARD QUESTION

Front

If the number 3 is the clue to the next location in the tuple c = ((7,5),(5,8),(0,-1),(4,3)), how would they refer to it?

Back

c[3][1]

3.

FLASHCARD QUESTION

Front

What is the index of the empty tuple y = () created by Luna?

Back

There is none. It is an empty tuple

4.

FLASHCARD QUESTION

Front

Anika, Nora, and Mia are having a debate. Anika says you can have an empty tuple z = () and an empty string w = []. Nora and Mia are not sure. Who is correct?

Back

Anika

5.

FLASHCARD QUESTION

Front

Given a = "Hello world", what does list(a) do in Python?

Back

It creates a list where each character is an item.

6.

FLASHCARD QUESTION

Front

Liam, Lily, and Benjamin are having a debate. Liam thinks you can have lists inside of tuples and vice versa, but Lily and Benjamin aren't so sure. Who do you think is correct?

Back

Liam

7.

FLASHCARD QUESTION

Front

Which Python statement would replace the second element ('bar') in the tuple t = ('They', 'bar', 'have', 'a', 'pepper') with the string 'quiznos'? Options: t[1] = 'quiznos', t(1) = 'quiznos', t[1:1] = 'quiznos', It's a trick question—tuples can't be modified.

Back

It's a trick question—tuples can't be modified.

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?