Q. What will be the output of the following R code snippet?
> lm <- function(x) { x * x }
> lm
> lm <- function(x) { x * x }
> lm
β
Correct Answer: (A)
function(x) { x * x }
You must be Logged in to update hint/solution