Variables & Lists

Variables & Lists

6th Grade

13 Qs

quiz-placeholder

Similar activities

Banana Tales Part I (1-40)

Banana Tales Part I (1-40)

6th - 8th Grade

10 Qs

Algoritma & Pemograman Python

Algoritma & Pemograman Python

1st - 10th Grade

15 Qs

3D Printing

3D Printing

6th - 8th Grade

15 Qs

7. Lists - Data Structures

7. Lists - Data Structures

6th - 8th Grade

18 Qs

for---Loop

for---Loop

3rd Grade - University

13 Qs

Python

Python

6th - 8th Grade

16 Qs

Đề ôn tập datatype python(P1)

Đề ôn tập datatype python(P1)

6th - 8th Grade

10 Qs

Python Basics

Python Basics

6th - 7th Grade

15 Qs

Variables & Lists

Variables & Lists

Assessment

Quiz

Computers

6th Grade

Hard

Created by

Fazla Fairooz

Used 1+ times

FREE Resource

13 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Create a variable named carname and assign the value Volvo to it.

carname = "Volvo"

Carname = "Volvo"

carname = Volvo

Volvo = carname

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Create a variable named x and assign the value 50 to it.

50 = x

50 = X

x = 50

X = 5 + 10

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Display the sum of 5 + 10, using two variables: x and y.

x = 5

y = 10

print(x + y)

x = 5

y = 5

print(x - y)

x = 5

y = 10

print(x)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Create a variable called z, assign x + y to it, and display the result.

x = 5

y = 10

a = x + y

print(z)

x = 5

y = 10

z = x + y

print(z)

x = 5

y = 10

z = x - y

print(z)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

From the following what is the incorrect variable name

Var = 5

Name = "Hello"

Python = False

2my-first_name = "John"

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Print the second item in the fruits list.

print(______)

Fill in the blank

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Change the value from "apple" to "kiwi", in the fruits list.


fruits = ["apple", "banana", "cherry"]

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?