Q. What will be the output of the following R code snippet?
> f <- function(a, b) {
+ print(a)
+ print(b)
+ }
> f(45)
> f <- function(a, b) {
+ print(a)
+ print(b)
+ }
> f(45)
β
Correct Answer: (D)
45