Python Variables

Python Variables

6th Grade - University

6 Qs

quiz-placeholder

Similar activities

Python Boolean

Python Boolean

11th - 12th Grade

11 Qs

Python Variables

Python Variables

6th Grade

10 Qs

Python strings

Python strings

8th - 9th Grade

11 Qs

Python for beginners #1

Python for beginners #1

8th Grade

10 Qs

Conditional statements

Conditional statements

7th Grade

11 Qs

10 Important Python Fundamentals Questions

10 Important Python Fundamentals Questions

12th Grade

10 Qs

Python Sets

Python Sets

University

10 Qs

Python

Python

10th - 11th 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