Which of these is a variable?
-
print()
-
float()
-
num1 = 9
-
int()
C
Correct answer
Explanation
A variable is a named storage location for data. In 'num1 = 9', 'num1' is the variable name being assigned the value 9. The other options are function calls or type conversion functions.