Search Header Logo

Python List Questions

Authored by RITIKA GUPTA

Information Technology (IT)

8th Grade

Used 1+ times

Python List Questions
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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].

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?