PythonTupeDicSet

PythonTupeDicSet

1st - 3rd Grade

17 Qs

quiz-placeholder

Similar activities

Common Coding Vocabulary

Common Coding Vocabulary

2nd - 8th Grade

13 Qs

Desserts Quiz Bee

Desserts Quiz Bee

1st - 3rd Grade

20 Qs

DBMS QUIZ 2

DBMS QUIZ 2

1st - 12th Grade

12 Qs

PB Color Psychology

PB Color Psychology

KG - Professional Development

12 Qs

Lynx User Meeting - 29/10/2019

Lynx User Meeting - 29/10/2019

1st Grade

14 Qs

UTS WEB

UTS WEB

KG - 1st Grade

20 Qs

Weird Stuff

Weird Stuff

KG - University

15 Qs

Colourful Wonders Quiz

Colourful Wonders Quiz

2nd Grade

13 Qs

PythonTupeDicSet

PythonTupeDicSet

Assessment

Quiz

Professional Development

1st - 3rd Grade

Hard

Created by

Viết Phan

Used 3+ times

FREE Resource

17 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Select all which is true for Python set

Sets are unordered

set object does support indexing

set doesn’t allow duplicate

sets are written with curly brackets {}

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following set operation

set1 = {"Yellow", "Orange", "Black"}

set2 = {"Orange", "Blue", "Pink"}

set3 = set2.difference(set1)

print(set3)

{‘Yellow’, 'Black', ‘Pink’, ‘Blue’}

{‘Pink’, ‘Blue’}

{‘Yellow’, 'Black'}

{‘Yellow’, ‘Blue’}

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of the following set operation

{‘Yellow’, ‘Orange’, ‘Black’, [“Blue”, “Green”, “Red”]}

TypeError: update() doesn’t allow list as a argument.

[‘Yellow’, ‘Orange’, ‘Red’, ‘Black’, ‘Green’, ‘Blue’]

{‘Yellow’, ‘Orange’, ‘Red’, ‘Black’, ‘Green’, ‘Blue’}

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following

sampleSet = {"Yellow", "Orange", "Black"}

sampleSet.add("Blue")

sampleSet.add("Orange")

print(sampleSet)

{‘Blue’, ‘Orange’, ‘Yellow’, ‘Orange’, ‘Black’}

{"Yellow", "Orange", "Black","Blue", "Orange"}

{‘Blue’, ‘Orange’, ‘Yellow’, ‘Black’}

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

What is the output of the following code

Yellow

Orange

Syntax Error

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

What is the output of the following

KeyError: ‘Blue’

TypeError

{‘Yellow’, ‘Orange’, ‘Black’}

[‘Yellow’, ‘Orange’, ‘Black’]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of the following code

TypeError

{‘PYnative’, 1, (‘abc’, ‘xyz’), True}

{‘PYnative’, 1, ‘abc’, ‘xyz’, True}

{‘PYnative’, 1, (‘abc’, ‘xyz’)}

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?