Python Assignment Statement

Python Assignment Statement

Assessment

Interactive Video

10th Grade

Hard

Created by

Catherine L Hulcher

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

An assignment statement is a way of assigning a value to a variable.

False

True

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The symbol = 

means assign to

means value

means equal

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What side of the = is the information stored in?

left-hand-side

right-hand side

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What number will be assigned to number_two?

0

71

4

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What number will be in number_one after this line is executed?

71

0

4

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a computer program, the = is

equals to

an assignment

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What ever happens on the right hand side of the = will be copied and placed in the left hand side.

True

False

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be in the count variable when line 4 executes?

10

1

9