create a vector with the numbers 15 to 20
without variable storage a) c(15:20) b) 15:20 c) c(15,16,17,18,19,20)
with storage a) v <- c(15:20)
usw.