20. What would following code fragments result in ? Given x =3.

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