Its a coding questions
I'm using Python
print (0.1+0.2 == 0.3 )
Note :- assume they are integer not string values :)
what will be output
A) True
B) False
C) None
Answers
Answered by
0
Explanation:
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.
Answered by
0
Answer:
false
Hey if it is helpfull plzzzzz mark as brainliest
Similar questions