What will be the output of this?
s = {1,9,3,4,5,5,4}
print(s)
Python-Day-3
Quiz
•
Computers
•
12th Grade - University
•
Medium
Uday Sk
Used 1+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of this?
s = {1,9,3,4,5,5,4}
print(s)
1 3 5 9
1 3 5 4 9
1 3 4 5 9
1 3 4 5
9
Answer explanation
set is a data type that stores elements in ascending order and duplicates are not allowed.
2.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
Which of the following statements is used to create an empty set?
{ }
[]
set()
()
3.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
>>> a={5,4}
>>> b={1,2,4,5}
>>> a<b
what will the output?
{1,2}
false
True
False
Answer explanation
Explanation:
a<b returns True if a is a proper subset of b.
4.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
>>> a={5,6,7,8}
>>> b={7,5,6,8}
>>> a==b
what will be the output?
True
False
NOTA
Answer explanation
It is possible to compare sets
5.
MULTIPLE SELECT QUESTION
45 sec • 5 pts
Which of the following is not a declaration of the dictionary?
{1: ‘A’, 2: ‘B’}
{ }
dict([[1,”A”],[2,”B”]])
{1,”A”,2”B”}
6.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
a={1:"A",2:"B",3:"C"}
print(a.get(1,4))
A
4
Error
NONE
7.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
a={1:5,2:3,3:4}
a.pop(3)
print(a)
{1: 5}
{1: 5, 3: 4}
Error
{1: 5, 2: 3}
Answer explanation
: pop() method removes the key-value pair for the key mentioned in the pop() method.
10 questions
Quiz1_HPB2021_2010t1
Quiz
•
1st - 12th Grade
10 questions
Post Test #4 - Python Fundamental #3
Quiz
•
University
20 questions
GirlsWhoML Workshop 0
Quiz
•
University
15 questions
Python revision
Quiz
•
10th Grade - University
12 questions
Java Strings
Quiz
•
9th - 12th Grade
16 questions
Arithmetic Types Declare Initialize Relation Logical Ops
Quiz
•
9th Grade - University
10 questions
Python Dictionaries
Quiz
•
University
10 questions
Python debugging
Quiz
•
University
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
20 questions
Taxes
Quiz
•
9th - 12th Grade
17 questions
Parts of Speech
Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression
Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing
Quiz
•
9th - 12th Grade
10 questions
Identifying equations
Quiz
•
KG - University