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.

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
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
6 questions
AP CSA 5.3 (Comments)

Quiz
•
10th - 12th Grade
10 questions
SLR 9 - Advanced Programming Techniques - Part Two

Quiz
•
10th Grade
10 questions
Representing and understanding algorithms

Quiz
•
10th - 11th Grade
14 questions
Computing Revision JCG

Quiz
•
KG - University
10 questions
Python

Quiz
•
10th - 11th Grade
10 questions
Visual Basic I

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

Quiz
•
7th Grade - University
7 questions
النشاط الختامي لدرس جملة الإدخال

Quiz
•
10th Grade
Popular Resources on Wayground
25 questions
Equations of Circles

Quiz
•
10th - 11th Grade
30 questions
Week 5 Memory Builder 1 (Multiplication and Division Facts)

Quiz
•
9th Grade
33 questions
Unit 3 Summative - Summer School: Immune System

Quiz
•
10th Grade
10 questions
Writing and Identifying Ratios Practice

Quiz
•
5th - 6th Grade
36 questions
Prime and Composite Numbers

Quiz
•
5th Grade
14 questions
Exterior and Interior angles of Polygons

Quiz
•
8th Grade
37 questions
Camp Re-cap Week 1 (no regression)

Quiz
•
9th - 12th Grade
46 questions
Biology Semester 1 Review

Quiz
•
10th Grade