Python Variables

Python Variables

6th Grade - University

6 Qs

quiz-placeholder

Similar activities

Python Lists

Python Lists

9th - 12th Grade

10 Qs

S2 Sphero Knowledge Check 2

S2 Sphero Knowledge Check 2

11th Grade

10 Qs

Python quiz 2

Python quiz 2

7th Grade

10 Qs

Review

Review

9th - 12th Grade

10 Qs

Programming in Java

Programming in Java

8th Grade

10 Qs

Python

Python

7th - 8th Grade

10 Qs

Year 9 Term 5 Quiz 2

Year 9 Term 5 Quiz 2

9th Grade

10 Qs

Python Basics

Python Basics

University

10 Qs

Python Variables

Python Variables

Assessment

Quiz

Computers

6th Grade - University

Hard

Created by

STEM Birds

Used 33+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will be output of the following code be?

1var = 6

6

1

var

Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Can a variable name start with a number?

Yes

No

Maybe

Irrelevant

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will the output of the following code be?

a = 5

b = 0

print(a)

5

0,5

0

5

5

5

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will the output of the following code be?

a=b=9

print (a)

print(b)

9

18

9

9

18

9

18

18

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What should we start the variable name with?

Number

Letter or an alphabet

Special Character

None of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will the output of the following code be?

name = Python

print(name)

Python

Error

print

Python name