Intermediate
R
Q58 / 100
What is "lazy evaluation" of function arguments in R?
Correct! Well done.
Incorrect.
The correct answer is B) Function arguments are not evaluated until they are actually used inside the function body
B
Correct Answer
Function arguments are not evaluated until they are actually used inside the function body
Explanation
R uses lazy evaluation: argument expressions are only evaluated when first accessed within the function, which can affect default arguments referencing other arguments.
Progress
58/100