Python Quiz for Grade 11 List, Tuple &  Strings

Python Quiz for Grade 11 List, Tuple & Strings

11th Grade

10 Qs

quiz-placeholder

Similar activities

Python List

Python List

4th Grade - University

15 Qs

Excel Overview

Excel Overview

9th - 12th Grade

10 Qs

OCR GCSE CS - 2.1 ERL sorts and searches

OCR GCSE CS - 2.1 ERL sorts and searches

10th - 11th Grade

9 Qs

PWPB - 11 RPL

PWPB - 11 RPL

11th Grade

15 Qs

Bài 8- CĐ F-TH10

Bài 8- CĐ F-TH10

9th - 12th Grade

10 Qs

Review for Midterm Test ICT 3

Review for Midterm Test ICT 3

1st - 11th Grade

15 Qs

Python Quiz for Grade 11 List, Tuple &  Strings

Python Quiz for Grade 11 List, Tuple & Strings

Assessment

Quiz

Computers

11th Grade

Practice Problem

Hard

Created by

santhiict santhiict

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

my_list = [1, 2, 3, 4]

print(my_list[-1])

1

2

3

4

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following methods is used to add an element to a list?

add()

append()

insert()

extend()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

list1 = [10, 20, 30]

list2 = [40, 50]

list3 = list1 + list2

print(list3)

[10, 20, 30, 40, 50]

[10, 20, 30]

[40, 50, 10, 20, 30]

[[10, 20, 30], [40, 50]]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens if you try to access a dictionary key that does not exist?

Returns None

Returns 0

Raises a KeyError

Creates a new key

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following methods is used to get all keys from a dictionary?

dict.keys()

dict.values()

dict.items()

dict.get()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

x = "Dubai"

y = "Dubai"

print(x is y)

True

False

None

Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

dict1 = {'a': 1, 'b': 2}

dict2 = dict1

dict2['c'] = 3

print(dict1)

{'a': 1, 'b': 2}

{'a': 1, 'b': 2, 'c': 3}

Error

None

Access all questions and much more by creating a free account

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

Already have an account?