please answer the following question. select one. if you wanted to put two arguments into a function call…

please answer the following question. select one. if you wanted to put two arguments into a function call for the function \add\, how would you do that? select the one choice that best answers the prompt above: answer 1 add(5 + 2) answer 2 add5; 2 answer 3 add(5, 2) answer 4 add5 2
Answer
Brief Explanations:
In most programming languages, when making a function call with multiple arguments, the arguments are separated by commas and placed inside parentheses. Answer 3 follows this standard syntax for passing two arguments to the "add" function.
Answer:
Answer 3. add(5, 2)