Q. What will be the output of the following R code snippet?
> f <- function(a, b) {
+ a^2
+ }
> f(2)
> f <- function(a, b) {
+ a^2
+ }
> f(2)
β
Correct Answer: (A)
4
You must be Logged in to update hint/solution