Question
What happens when Python executes `score = 85`?
Select an option. Your answer will be checked instantly.
Correct Answer: B. The name `score` is bound to the integer value 85
Explanation:
Assignment associates a variable name with an object or value in memory. Python does not require a separate type declaration for this assignment.
Leave a Reply