Python List

Python List

12th Grade

28 Qs

quiz-placeholder

Similar activities

Class XII(Revision Tour)

Class XII(Revision Tour)

12th Grade

25 Qs

CSV File handling in Python

CSV File handling in Python

12th Grade

25 Qs

CPM2 Quiz Review

CPM2 Quiz Review

10th - 12th Grade

25 Qs

1st Period Feb 22, 2024 - Virtual AP CompSci AP

1st Period Feb 22, 2024 - Virtual AP CompSci AP

9th - 12th Grade

25 Qs

Review Python

Review Python

12th Grade

25 Qs

Chapter 10 Review

Chapter 10 Review

9th - 12th Grade

25 Qs

Tin 11 - Lặp Python

Tin 11 - Lặp Python

12th Grade

23 Qs

Algorithms - python (GCSE)

Algorithms - python (GCSE)

10th - 12th Grade

25 Qs

Python List

Python List

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Jumanah Alqurnah

Used 46+ times

FREE Resource

28 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

1. Which of these collections defines a LIST?

{"numbers": "omar", "Ali": "Ahmed"}

["omar", "Ali": "Ahmed"]

("omar", "Ali": "Ahmed")

{"omar", "Ali": "Ahmed"}

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

1. How can you print the second and the third items in the list example ?

print(example[2,3],example[3])

echo(example[3][2])

print(example[1],example[2])

print(example(2))

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following are true of Python lists?

These represent the same list: ['a', 'b', 'c'], ['c', 'a', 'b']

A given object may appear in a list more than once

There is no conceptual limit to the size of a list

A list may contain any type of object except another list

a) All elements in a list must be of the same type

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the answer of print (list(range(1, 6)))

[1, 2, 3, 4, 5]

[2, 3, 4]

[1, 3, 2, 4, 5]

[ 2, 3, 4, 5, 1]

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Choose the correct definition for Python List

A collection which is ordered and unchangeable

A collection which is ordered and changeable.

A collection which is unordered, changeable and indexed.

A collection which is unordered and un-indexed.

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code snippet:

x = ["Omar", "Ali", "Ahmed"]

print(x[1])

print(x[-2])

print(x[-2][-1])

Ali

Omar

A

Ali

Ali

i

Omar

Omar

r

Ali

Ali

Ali

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Choose the correct python program that has the output A

print("A".lower())

Print("A")

x=["Ali"]

print(x[0])

x=["Ali"]

print(x[--3])

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?