Python_Quiz6_Tuples_Sets_Dict

Python_Quiz6_Tuples_Sets_Dict

University

20 Qs

quiz-placeholder

Similar activities

8-期中总结

8-期中总结

University

20 Qs

Get started with python

Get started with python

University

19 Qs

Python Programming Basics 1

Python Programming Basics 1

University

25 Qs

CodeHS Basic Data Structures in Python

CodeHS Basic Data Structures in Python

University

20 Qs

COMP177 Mod 8 - Lists & Dictionaries

COMP177 Mod 8 - Lists & Dictionaries

University

16 Qs

PYTHON - 14.07.2023

PYTHON - 14.07.2023

University

23 Qs

Python basic 2

Python basic 2

University

15 Qs

Python Programming

Python Programming

University

20 Qs

Python_Quiz6_Tuples_Sets_Dict

Python_Quiz6_Tuples_Sets_Dict

Assessment

Quiz

Computers

University

Hard

Created by

Rubin Ray

Used 2+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? tuple1 = (1, 2, 3) tuple2 = (4, 5, 6) tuple3 = tuple1 + tuple2 print(tuple3)

(1, 2, 3, 4, 5, 6)

(4, 5, 6, 1, 2, 3)

An error occurs

(1, 2, 3)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct way to create a tuple in Python?

tuple = (1, 2, 3)

my_tuple = [1, 2, 3]

tuple_data = {1, 2, 3}

tuple_values = (1, "hello", 3.14)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? my_tuple = (1, 2, 3, 4, 5) a, b, *c = my_tuple print(c)

(3, 4, 5)

[3, 4, 5]

An error occurs

(2, 3, 4)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

var=('1')

print(type(var))

a. Tuple

b. String

c. Integer

d. Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given a nested tuple nested_tuple = ((1, 2), (3, 4), (5, 6)), how can you access the element '4'?

nested_tuple[1][1]

nested_tuple[2, 1]

nested_tuple[1, 1]

nested_tuple.get(1, 1)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you reverse a tuple t in Python?

t[::-1]

t.reverse()

reversed(t)

t.sort(reverse=True)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How to insert a element 0 in 3nd index of a set. myset={1,2,3}

myset.insert(3,0)

myset.insert(0,3)

myset.append(0)

Cant insert an element

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?