Intermediate
R
Q55 / 100
What does "do.call(func, args_list)" do?
Correct! Well done.
Incorrect.
The correct answer is A) Calls func with the arguments contained in args_list (a list), constructing the call dynamically
A
Correct Answer
Calls func with the arguments contained in args_list (a list), constructing the call dynamically
Explanation
do.call() constructs and executes a function call from a function and a list of arguments, useful for dynamic function calls.
Progress
55/100