List with tuple

List with tuple

12th Grade

10 Qs

quiz-placeholder

Similar activities

CS QUIZ - CHAPTER 2

CS QUIZ - CHAPTER 2

12th Grade

10 Qs

Computer Science Tuples

Computer Science Tuples

11th - 12th Grade

15 Qs

H466 - Arrays, Records, Tuples and Lists

H466 - Arrays, Records, Tuples and Lists

11th Grade - University

10 Qs

Python Abstraction

Python Abstraction

12th Grade

10 Qs

Python Lists and Dictionaries

Python Lists and Dictionaries

11th - 12th Grade

7 Qs

CodeHS U8 L

CodeHS U8 L

10th - 12th Grade

12 Qs

Python Brain Teaser

Python Brain Teaser

4th Grade - Professional Development

6 Qs

list in python

list in python

10th - 12th Grade

15 Qs

List with tuple

List with tuple

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Kelzang Lethro

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is the best description of a list in Python?

A list is a collection of data that has an order and can be changed

A list is a lot of variables

A list is used for shopping

A list is a collection of data that cannot hold duplicated data and cannot be changed

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is the correct code for creating a list of names?

nameList = John, Harry, Jesse, John, Harry, Harry

nameList = ("John", "Harry", "Jesse", "John", "Harry", "Harry")

nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]

nameList = [John, Harry, Jesse, John, Harry, Harry]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What would this code show on the screen?

7

6

5

4

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

For tuples and list which is correct?

List and tuples both are mutable.

List is mutable whereas tuples are immutable.

List and tuples both are immutable.

List is immutable whereas tuples are mutable

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is a correctly declared tuple?

a = ("orange", "yellow", "red")

a = "orange", "yellow", "red"

a = "orangeyellowred"

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If list1=[17,23,41,10]

then list1.append(32) will result in:

[32,17,23,41,10]

[17,23,41,10,32]

[10,17,23,32,41]

[41,32,23,17,10]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What would the following code print?

[3, 2, 1]

[2, 0, 2]

[2, 2, 2]

[2, 2, 1]

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?