Vidyalelo
R Programming · Q131

R Programming Basics

Programming · R Programming · question 131

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
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board