1. Given that i = 4, j = 5, k = 4, what will be the result of following expressions ?

(i) i < k : False

(ii) i < j : True

(iii) i <=k : True

(iv) i == j : False

(v) i == k : True

(vi) j > k : True

(vii) j >= i : True

(viii) j != i : True

(ix) j <= k : False