The statement (0==0) ? 0 : 1 will evaluate to *
a. 0
b. 1
c. true
d. false
Answers
Answered by
0
Answer:
This set of Python Multiple Choice Questions & Answers (MCQs) focuses on “Numeric Types”.
1. What is the output of print 0.1 + 0.2 == 0.3?
a) True
b) False
c) Machine dependent
d) Error
View Answer
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.
Similar questions