Python Quiz for Grade 10 Students

Python Quiz for Grade 10 Students

10th Grade

10 Qs

quiz-placeholder

Similar activities

User Input in Python

User Input in Python

6th - 10th Grade

11 Qs

Unit 5 Data

Unit 5 Data

9th - 12th Grade

15 Qs

Computer Science Foundations - Module 4 Review

Computer Science Foundations - Module 4 Review

9th - 11th Grade

9 Qs

Programação em C

Programação em C

10th - 12th Grade

10 Qs

Functions in Python

Functions in Python

9th - 12th Grade

15 Qs

JavaScript Functions and Parameters

JavaScript Functions and Parameters

9th - 12th Grade

15 Qs

Ch 5 Practice

Ch 5 Practice

9th - 12th Grade

10 Qs

Control Structures - Selection in Python

Control Structures - Selection in Python

8th Grade - University

11 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?