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)A. 32
B. 42
C. 52
D. 45
Answer: Option D

Join The Discussion