Q. What will be the output of the following R code?
> x <- list(1, "a", TRUE, 1 + 4i)
> x
β
Correct Answer: (A)
[[1]]
[1] 1
[[2]]
[1] "a"
[[3]]
[1] TRUE
[[4]]
[1] 1+4i