Que: Which of the following is invalid assignment?

a. > c(10.4, 5.6, 3.1, 6.4, 21.7) -> x
b. > assign(“x”, c(10.4, 5.6, 3.1, 6.4, 21.7))
c. > x <- c(10.4, 5.6, 3.1, 6.4, 21.7)
d. None of the mentioned
Answer: None of the mentioned

Leave a Comment