Python List Questions

Python List Questions

8th Grade

15 Qs

quiz-placeholder

Similar activities

Programski jezik Python

Programski jezik Python

8th Grade

17 Qs

quiz1B1

quiz1B1

7th Grade - University

20 Qs

Тест з теми 'Списки – змінювані послідовності'

Тест з теми 'Списки – змінювані послідовності'

7th Grade - University

12 Qs

питончки

питончки

8th Grade

10 Qs

Quick Lookup - Printing Variables

Quick Lookup - Printing Variables

8th Grade

19 Qs

نشاط عملي في البايثون

نشاط عملي في البايثون

8th Grade

18 Qs

Python Programming Quiz

Python Programming Quiz

8th Grade

20 Qs

Викторина по языку Python

Викторина по языку Python

6th - 8th Grade

10 Qs

Python List Questions

Python List Questions

Assessment

Quiz

Information Technology (IT)

8th Grade

Easy

Created by

RITIKA GUPTA

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given the list `stationery = ['Notebook', 'Pen', 'Pencil', 'Eraser', 'Sharpener'] `, which statement outputs 'Pen'?

print(stationery[0])

print(stationery[1])

print(stationery[2])

print(stationery [3])

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? colors = [] colors.append('red') colors.append('blue') colors.append('green') colors.append('pink') print(colors[2])

red

blue

green

pink

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How to insert 'apples' as the first element of the list `fruit`?

fruit.append('apples')

fruit.insert('apples', 0)

fruit.append('apples', 0)

fruit.insert(0, 'apples')

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the length of the list after executing the following? a = [2, 6, 8, 10, 67, 8, 90] a.remove(8) print(len(a))

5

4

6

7

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How to sort the list `score` in descending order? score = [45, 22, 89, 34, 10, 90]

score.sort()

sorted(score)

score.sort(reverse=True)

sorted(score, reverse=True)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of `sampleList[2:4]`if `sampleList = [10, 20, 30, 40, 50]`?

[20, 30, 40]

[30, 40, 50]

[20, 30, 40, 50]

[30, 40]

7.

OPEN ENDED QUESTION

3 mins • 1 pt

Final contents of `myList` after the following operations: myList = [80, 70] myList.append(60) myList.extend([50, 40])

Evaluate responses using AI:

OFF

Answer explanation

Starting with myList = [80, 70], we append 60, resulting in [80, 70, 60]. Then, we extend it with [50, 40], giving us [80, 70, 60, 50, 40]. Thus, the final contents of myList are [80, 70, 60, 50, 40].

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?