Making choices choice operators (solution)

Exercise
Output solution
  1. w is greater than 10
[1] TRUE
  1. w + x is less than 15
[1] TRUE
  1. x is greater than y
[1] FALSE
  1. Each value in masses is greater than 50.
[1]  TRUE FALSE FALSE  TRUE  TRUE
  1. 2 * x + 0.2 is equal to y
[1] FALSE
  1. dna1 is the same as dna2
[1] FALSE
  1. dna1 is not the same as dna2
[1] TRUE
  1. w is greater than x, or y is greater than z
[1] TRUE
  1. x times w is between 13.2 and 13.5
[1] TRUE
    1. Each mass in masses is between 30 and 50.
[1]  TRUE  TRUE FALSE FALSE  TRUE