(A) What will be the output of the following code?
if(4 + 5 == 10):
print("True")
else:
print("False”)
print("True")
Answers
Answered by
2
Output :
False
True
Explanation:
4+5 = 9
Answered by
0
Answer:
out put
(4+5==10)
false and true
Similar questions