What will be the output of the following R code?
> x <- list(foo = 1:4, bar = 0.6, baz = "hello")
> name <- "foo"
> x[[name]]
> x <- list(foo = 1:4, bar = 0.6, baz = "hello")
> name <- "foo"
> x[[name]]A. 1 2 3 4
B. 0 1 2 3
C. 1 2 3 4 5
D. All of the mentioned
Answer: Option A

Join The Discussion