Q131
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
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board