what would following code result into if value of x = 3 a)x>4 b)x==3.0 c)x<7and4>5 d) 2<x
Answers
Answered by
1
Answer:
Explanation:
a) 1<x : True
b) x>=4 : False
c) x == 3 : True
d) x == 3.0 : True
e) “Hello” == “Hello” : True
f) “Hello” > “hello” : False
g) 4/2 == 2.0 : True
h) 4/2 == 2 : True
i) x<7 and 4>5 : False
Similar questions