Create the following variables.
w <- 10.2
x <- 1.3
y <- 2.8
z <- 17.5
dna1 <- "attattaggaccaca"
dna2 <- "attattaggaacaca"
colors <- c("green", "pink", "red")
Use them to print whether or not the following statements are
TRUE or FALSE.
w is greater than 10"green" is in colorsx is greater than yx + 0.2 is equal to ydna1 is the same as dna2dna1 is not the same as dna2w is greater than x, and y is greater than zx times w is between 13.2 and 13.5dna1 is longer than 5 bases (use nchar() to figure out how long a string
is), or z is less than w * x