What will be the output produced by following code statements?(a) 87//5 (b) 87//5.0 (c) (87 // 5.0) ==(87//5) (d)(87 // 5.0) == int(87/5.0)
Answers
Answered by
53
Answer:
You must specify the programming language
I'm writing assuming its python language
Explanation:
a) 87//5
output
17
b) 87//5.0
output
17.0
c) (87//5.0) == (87//5)
output
True
d) (87 // 5.0) == int(87/5.0)
output
True
as comparing int with float it automatically convert int to float i.e 17 to 17.0 so both are equal
Hope it helps :-)
Answered by
0
Answer:
true
Explanation:
87)/5==87//5.0
17==17.0
both are equal
Hence,true
Similar questions
Social Sciences,
5 months ago
Hindi,
5 months ago
Social Sciences,
5 months ago
Math,
9 months ago
Hindi,
9 months ago
Math,
1 year ago
Economy,
1 year ago
Math,
1 year ago