Python Variables

Python Variables

Assessment

Flashcard

Computers

9th Grade

Hard

Created by

Wayground Content

FREE Resource

Student preview

quiz-placeholder

9 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is the primary purpose of a variable in programming?

Back

To store information for later use

2.

FLASHCARD QUESTION

Front

What are the three components of a variable?

Back

Name, Type, Value

3.

FLASHCARD QUESTION

Front

What does the type 'int' represent in Python?

Back

An integer

4.

FLASHCARD QUESTION

Front

What type of variable is used to store text?

Back

Str

5.

FLASHCARD QUESTION

Front

Which of the following is an example of a string? True, -3.2, 'Hello World', 50

Back

'Hello World'

6.

FLASHCARD QUESTION

Front

Which variable type can have a decimal component? Options: Float, Bool, Str, Int

Back

Float

7.

FLASHCARD QUESTION

Front

How do you create or update a variable in Python?

Back

With a single equal sign

8.

FLASHCARD QUESTION

Front

What signifies a variable's name in an assignment statement? Options: It's followed by parentheses, It's on the left side of the equal sign, It's inside quotes, It's on the right side of the equal sign

Back

It's on the left side of the equal sign

9.

FLASHCARD QUESTION

Front

What is the output of the 'type' function when used on a string variable?

Back

'Str'