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