Exam-style question
Try this first
What does add(3,4) represent?.
- A.The declaration of a function called add
- B.The application of add to the integer arguments 3 and 4
- C.The definition of a new integer type
- D.The Cartesian product of two functions
Model answer
What a good answer should say
- The application of add to the integer arguments 3 and 4
Explanation
Why this works
Function application is the process of giving particular inputs to a function. In add(3,4), the function add is applied to 3 and 4.
Common mistake
No common mistake is linked to this question yet.
