Q. What will be the output of the following R code?
> x <- list(aardvark = 1:5)
> x$a
> x <- list(aardvark = 1:5)
> x$a
β
Correct Answer: (A)
1 2 3 4 5
You must be Logged in to update hint/solution