
Python Quiz for Grade 10 Students

Quiz
•
Computers
•
10th Grade
•
Hard
Kamona Karim
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
1. Create a list named 'numbers' with the elements 1, 2, 3, 4, 5. Then, add the number 6 to the end of the list.
numbers.extend(6)
numbers.append(6)
numbers.remove(6)
numbers.insert(6)
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
2. Given the list 'fruits' = ['apple', 'banana', 'cherry'], remove the 'banana' from the list.
fruits.exclude('banana')
fruits.pop('banana')
fruits.delete('banana')
fruits.remove('banana')
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
3. Write a Python program to generate a list of numbers from 1 to 10 using the range() function.
list(range(1, 10, 2))
list(range(10))
range(1, 10)
list(range(1, 11))
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
4. Use the range() function to create a list of even numbers from 2 to 10.
[2, 4, 6, 8]
[1, 3, 5, 7, 9]
[2, 4, 6, 8, 10]
[2, 3, 4, 5, 6, 7, 8, 9, 10]
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
5. Iterate through the list 'colors' = ['red', 'green', 'blue'] using a for loop and print each color.
for color in range(colors): print(color)
for i in range(colors): print(colors[i])
print(colors)
for color in colors: print(color)
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
6. Write a program to find the sum of all the elements in the list 'numbers' = [10, 20, 30, 40, 50] using a for loop.
60
250
100
150
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
7. Define a procedure named 'greet' that takes a name as a parameter and prints 'Hello,
def greet(name): print('Hello, ' + name + '!')
def hello(name): print('Hey, ' + name + '!')
def say_hello(name): print('Hi, ' + name + '!')
def welcome(name): print('Welcome, ' + name + '!')
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
Functions in Python

Quiz
•
9th - 12th Grade
10 questions
DFD- DIAGRAMAS DE FLUJO

Quiz
•
10th Grade
15 questions
Functions and Parameters Quiz

Quiz
•
9th - 12th Grade
14 questions
Python Data types & Exceptions

Quiz
•
1st - 10th Grade
6 questions
Mathematical Expressions Quiz (MCQs)

Quiz
•
10th Grade
15 questions
Eval. 1BIM - 1ro B

Quiz
•
7th Grade - University
10 questions
Visual Basic I

Quiz
•
10th - 11th Grade
9 questions
Computer Science Foundations - Module 4 Review

Quiz
•
9th - 11th Grade
Popular Resources on Wayground
10 questions
SR&R 2025-2026 Practice Quiz

Quiz
•
6th - 8th Grade
30 questions
Review of Grade Level Rules WJH

Quiz
•
6th - 8th Grade
6 questions
PRIDE in the Hallways and Bathrooms

Lesson
•
12th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
15 questions
Subtracting Integers

Quiz
•
7th Grade