Question-80: When you run below program, what would be printed on console
X=10
Y=1**10
Z=10.
A=5
print(X==Y, X==Z, X==A)
- True True False
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Answer: B
Exp:
X=10
Y=1**10 -> 1
Z=10. -> 10.0
You can access to full explanation to question and answer from this page.