Q. In R, how do you create a named list with elements "apple", "orange", and "banana"?
β
Correct Answer: (D)
list(elements = c("apple", "orange", "banana"))
You must be Logged in to update hint/solution