Variables & Lists

Variables & Lists

6th Grade

13 Qs

quiz-placeholder

Similar activities

CodeMonkey程式觀念測驗(琢思 201812078)

CodeMonkey程式觀念測驗(琢思 201812078)

3rd - 9th Grade

10 Qs

ICT Unit 3: Animation

ICT Unit 3: Animation

6th - 12th Grade

10 Qs

Examen III Periodo 6to

Examen III Periodo 6to

6th Grade

10 Qs

Bespieczeństwo w sieci

Bespieczeństwo w sieci

1st - 12th Grade

10 Qs

HELE 6 Entrepreneurs Review

HELE 6 Entrepreneurs Review

6th Grade

15 Qs

Tabelline

Tabelline

6th - 9th Grade

11 Qs

Moringa JavaScript Arrays

Moringa JavaScript Arrays

5th Grade - Professional Development

10 Qs

Python 变量

Python 变量

6th - 8th Grade

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