Python Quiz for Grade 10 Students

Python Quiz for Grade 10 Students

10th Grade

10 Qs

quiz-placeholder

Similar activities

 Computing Revision JCG

Computing Revision JCG

KG - University

14 Qs

APCSA - Unit 3

APCSA - Unit 3

9th - 12th Grade

10 Qs

Functions in Python

Functions in Python

9th - 12th Grade

15 Qs

Python

Python

10th - 11th Grade

10 Qs

Python Function and Return

Python Function and Return

9th - 12th Grade

12 Qs

Representing and understanding algorithms

Representing and understanding algorithms

10th - 11th Grade

10 Qs

A4 IIIB - Funciones PSeInt & Python

A4 IIIB - Funciones PSeInt & Python

10th Grade - University

10 Qs

Python Beginners Week 6

Python Beginners Week 6

3rd - 12th Grade

13 Qs

Python Quiz for Grade 10 Students

Python Quiz for Grade 10 Students

Assessment

Quiz

Computers

10th Grade

Hard

Created by

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

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?