Question 1
Which of the following statements are true?
◦ (x > 0 || x < 10 && y < 0) is same as ((x > 0 || x < 10) && y < 0)
◦ (x > 0 && x < 10) is same as ((x > 0) && (x < 10))
◦ (x > 0 || x < 10) is same as ((x > 0) || (x < 10))
◦ (x > 0 || x < 10 && y < 0) is same as (x > 0 || (x < 10 && y < 0))
Question 2
You can always convert a switch statement to an equivalent if statement.
◦ true
◦ false