Search Header Logo

Python Quiz for Grade 10 Students

Authored by Kamona Karim

Computers

10th Grade

Python Quiz for Grade 10 Students
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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 + '!')

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?