Home / Programming MCQs / Python MCQs / Question
Q. What is the output of the following program : print 0.1 + 0.2 == 0.3
Explanation:
Neither of 0.1, 0.2 and 0.3 can be represented accurately in binary. The round off errors from 0.1 and 0.2 accumulate and hence there is a difference of 5.5511e-17 between (0.1 + 0.2) and 0.3.
You must be Logged in to update hint/solution
Who developed the Python language?
If a class is derived from two different classes, this is called ______?
What is the maximum possible length of an identifier in Python?
What will be the output of the following Python code?
Who developed Python Programming Language?
What is the method that is bound to class but not the instance?
Amongst which of the following is / are the key functions used for file handling in Python?
Which one of the following is incorrect?
Discusssion
Login to discuss.