Question 1
Which of the following expressions evaluates to true?
◦ 2 > '2'
◦ 'a' > 'A'
◦ 34 > 34
◦ 'A' > 'z'
Question 2
Assume x = 14 and y = 15, Which of the following is true?
◦ x % 2 == 0 && y % 2 == 0
◦ x % 2 == 0 || y % 2 == 0
◦ x % 2 == 0 && y % 2 == 1
◦ x % 2 != 0 && y % 2 != 0