Question-74: When you run below code snippet what would be printed
X = 99
Y = 100
X=199
x=300
print(X)
- Error
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Answer: C
Exp: Python variable names are case sensitive. Hence both X and x are considered separate variable.
You can access to full explanation to question and answer from this page.