Python Quiz

Python Quiz

12th Grade

10 Qs

quiz-placeholder

Similar activities

Python

Python

11th - 12th Grade

12 Qs

Python: Chapter 7 - True or False (Lists and Tuples)

Python: Chapter 7 - True or False (Lists and Tuples)

9th Grade - University

8 Qs

PCEP 3C: Collect and process data using tuples

PCEP 3C: Collect and process data using tuples

12th Grade

10 Qs

Set Dictionary List Tuple Python

Set Dictionary List Tuple Python

11th - 12th Grade

7 Qs

Python Lists Dictionaries Tuple Set

Python Lists Dictionaries Tuple Set

11th - 12th Grade

7 Qs

Tuples

Tuples

11th - 12th Grade

15 Qs

Python Fundamentals and Programming

Python Fundamentals and Programming

11th - 12th Grade

13 Qs

Python Dictionary Quiz

Python Dictionary Quiz

9th - 12th Grade

10 Qs

Python Quiz

Python Quiz

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Shweta Dhareshwar

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following object does not support indexing?

tuple

list

dictionary

set

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following data type is immutable?

list

set

tuple

dictionary

3.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

Which of the following code gives output My friend's house is in Chennai?

Evaluate responses using AI:

OFF

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What's the main difference between Python lists and tuples?

Lists are faster and tuples are slower.

Lists can hold any data type and tuples can only contain int and str objects.

Lists are mutable and tuples are immutable.

Lists are immutable and tuples are mutable

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How do you assign a tuple of length 1 to the variable a? (Check all that are correct.)

a = 1,

a = tuple(1)

a = 1

a = [1]

a = (1,)

6.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following are true of Python dictionaries?

Dictionaries can be nested to any depth.

Dictionaries are accessed by key.

A dictionary can contain any object type except another dictionary.

Dictionaries are mutable.

Items are accessed by their position in a dictionary.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

colors = ["red", "green", "burnt sienna", "blue"]

print( "yellow" in color)

What is the result of the yellow in colors expression?

ValueError: 'yellow' is not in list

4

False

3

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?