Open In App

Python | Miscellaneous | Question 4

Like Article
Like
Save Article
Save
Share
Report issue
Report

What is the output of the following program : 

Python3




print 0.1 + 0.2 == 0.3


(A)

True

(B)

False

(C)

Machine dependent

(D)

Error


Answer: (B)

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.


Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads