Python List Questions

Python List Questions

8th Grade

15 Qs

quiz-placeholder

Similar activities

Quiz về kiểu dữ liệu Str

Quiz về kiểu dữ liệu Str

6th - 8th Grade

17 Qs

LOOPS AND FLOW CONTROL STATEMENTS

LOOPS AND FLOW CONTROL STATEMENTS

8th Grade

10 Qs

Python Junior

Python Junior

6th - 8th Grade

12 Qs

N5 Admin Letters and Tables

N5 Admin Letters and Tables

8th Grade - University

15 Qs

Python: тест #1

Python: тест #1

1st Grade - University

11 Qs

Python Programming Quiz

Python Programming Quiz

8th Grade

20 Qs

Sistem Komputer

Sistem Komputer

8th Grade

12 Qs

flowchart and pseudocode input output condition loop (IGCSE)

flowchart and pseudocode input output condition loop (IGCSE)

8th Grade

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