Python List

Python List

12th Grade

28 Qs

quiz-placeholder

Similar activities

Review Python

Review Python

12th Grade

25 Qs

CS 1 Cycle 3 exam

CS 1 Cycle 3 exam

9th Grade - University

30 Qs

If,elif,loop

If,elif,loop

11th - 12th Grade

24 Qs

CONDITIONAL STATEMENTS

CONDITIONAL STATEMENTS

11th - 12th Grade

25 Qs

XII - CS - Lesson 9 - List and Tuple - Quiz 1

XII - CS - Lesson 9 - List and Tuple - Quiz 1

12th Grade

25 Qs

Turtle Python Quiz 1

Turtle Python Quiz 1

10th - 12th Grade

27 Qs

CPM2 Quiz Review

CPM2 Quiz Review

10th - 12th Grade

25 Qs

Python middle

Python middle

8th Grade - University

26 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?