What will be the output of the following R code?
> f <- function() {
+ ## This is an empty function
+ }
> class(f)
> f <- function() {
+ ## This is an empty function
+ }
> class(f)A. "function"
B. "class"
C. "procedure"
D. "system"
Answer: Option A

Join The Discussion