Python Quiz: Lists, Tuples, and Strings

Python Quiz: Lists, Tuples, and Strings

University

56 Qs

quiz-placeholder

Similar activities

Structure C

Structure C

University

60 Qs

PRELIM EXAM - TECHNO_1

PRELIM EXAM - TECHNO_1

University

60 Qs

Environmental Studies Quiz

Environmental Studies Quiz

University

60 Qs

ИБиТ 61-120

ИБиТ 61-120

University

60 Qs

TN1 OP2

TN1 OP2

University

53 Qs

DM - Unit 1 - Intro to Design

DM - Unit 1 - Intro to Design

8th Grade - University

56 Qs

Quiz về Xử lý Ảnh

Quiz về Xử lý Ảnh

University

54 Qs

Introduction to CSS Quiz

Introduction to CSS Quiz

University

60 Qs

Python Quiz: Lists, Tuples, and Strings

Python Quiz: Lists, Tuples, and Strings

Assessment

Quiz

Engineering

University

Easy

Created by

Renu Popli

Used 1+ times

FREE Resource

56 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to create a list in Python?

list = [1, 2, 3]

list = (1, 2, 3)

list = {1, 2, 3}

list = <1,2,3>

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method adds an element at the end of a list?

append()

add()

insert()

extend()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following reverses a list in place?

list.reverse()

reversed(list)

list[::-1]

list.flip()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these statements is true about tuples?

Tuples are immutable

Tuples are mutable

Tuples can be changed

Tuples cannot be indexed

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Strings in Python are _______.

Immutable

Mutable

Dynamic

Unhashable

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to create a list in Python?
list = [1, 2, 3]
list = (1, 2, 3)
list = {1, 2, 3}
list = <1,2,3>

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of: print([1,2,3] + [4,5])
[1,2,3,4,5]
[1,2,3][4,5]
Error
[[1,2,3],[4,5]]

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?