
Python List Questions

Quiz
•
Information Technology (IT)
•
8th Grade
•
Easy
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
Similar Resources on Wayground
12 questions
Network Security Threats Quiz

Quiz
•
8th Grade
20 questions
G08- ICT Q1 Reviewer

Quiz
•
8th Grade
10 questions
Digital Literacy

Quiz
•
6th - 8th Grade
13 questions
Тест по информатике для 8 класса

Quiz
•
8th Grade
10 questions
Quiz Google sheet inf 8 semester ganjil

Quiz
•
8th Grade
10 questions
Quiz Assesmen Awal "Perangkat Keras"

Quiz
•
7th Grade - University
10 questions
Media Digital [Mecca 8H/12]

Quiz
•
8th Grade
20 questions
Ch. 5 Exam Review

Quiz
•
8th Grade
Popular Resources on Wayground
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
10 questions
Ice Breaker Trivia: Food from Around the World

Quiz
•
3rd - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
20 questions
ELA Advisory Review

Quiz
•
7th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Multiplication and Division Unknowns

Quiz
•
3rd Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Information Technology (IT)
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
10 questions
Ice Breaker Trivia: Food from Around the World

Quiz
•
3rd - 12th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
20 questions
Figurative Language Review

Quiz
•
8th Grade
4 questions
End-of-month reflection

Quiz
•
6th - 8th Grade
20 questions
Distribute and Combine Like Terms

Quiz
•
7th - 9th Grade
20 questions
Physical and Chemical Changes

Quiz
•
8th Grade
22 questions
Newton's Laws of Motion

Lesson
•
8th Grade