Important Notice:
M3-R5.1 — Tuples MCQ
25 Questions  •  M3-R5.1
20:00
← Back
1
A tuple in Python is created using?
2
Tuples in Python are?
3
A tuple with a single element must have?
4
len((1,2,3)) returns?
5
Tuple unpacking: a, b = (10, 20) makes a=? b=?
6
Which operation is NOT possible on tuples?
7
Tuples are faster than lists for?
8
Tuples can be used as dictionary keys because?
9
(1, 2) + (3, 4) returns?
10
max((3, 1, 4, 1, 5)) returns?
11
Tuple is created with?
12
Tuples are?
13
Can you change a tuple element after creation?
14
Single element tuple needs?
15
tuple.count(x) returns?
16
tuple.index(x) returns?
17
Tuple packing means?
18
a, b, c = (1, 2, 3) is called?
19
Tuple is faster than list because?
20
len((1,2,3,4,5)) returns?
21
(1,2) + (3,4) returns?
22
("Hi",) * 3 returns?
23
Which is valid tuple?
24
max((10,20,30)) returns?
25
min((10,20,30)) returns?
Answered: 0 / 25