🎯 Python Variables Quiz

1. Which of the following is a valid variable name?

1name
name_1
class

2. What data type is this variable?
price = 19.99

Integer (int)
Float
String

3. Which of the following statements is True?

Variable names can contain spaces.
Variable names are case-sensitive.
Variable names must start with a number.

4. What is the value of x after this code runs?
x = 5
x = x + 3

5
8
53