Python Variables

Python Variables

6th Grade - University

6 Qs

quiz-placeholder

Similar activities

Python Variables

Python Variables

6th Grade

10 Qs

python selection

python selection

8th Grade

11 Qs

CSC401- G9[GEN]_53

CSC401- G9[GEN]_53

9th Grade

10 Qs

Python for beginners #1

Python for beginners #1

8th Grade

10 Qs

Session 2

Session 2

University

10 Qs

Introduction to Python Turtle

Introduction to Python Turtle

7th - 8th Grade

10 Qs

Python Boolean

Python Boolean

11th - 12th Grade

11 Qs

Python

Python

7th Grade

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