
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
10 questions
Ch6字典-綜合演練選擇題

Quiz
•
6th - 8th Grade
20 questions
Understanding Python Selection Basics

Quiz
•
8th Grade
20 questions
Python 8 klasa

Quiz
•
8th Grade
11 questions
Osnove programiranja u Pythonu

Quiz
•
8th Grade
17 questions
Quiz về kiểu dữ liệu Str

Quiz
•
6th - 8th Grade
10 questions
LOOPS AND FLOW CONTROL STATEMENTS

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

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

Quiz
•
8th Grade
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
Discover more resources for Information Technology (IT)
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
24 questions
Flinn Lab Safety Quiz

Quiz
•
5th - 8th Grade
15 questions
Wren Pride and School Procedures Worksheet

Quiz
•
8th Grade
10 questions
Essential Lab Safety Practices

Interactive video
•
6th - 10th Grade
10 questions
Converting Repeating Decimals to Fractions

Quiz
•
8th Grade