Advertisements
Advertisements
Question
Assertion(A): An argument is a value that is passed to a method when it is called.
Reason(R): Variables which are declared in a method prototype to receive values are called actual parameters.
Options
Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
Both Assertion (A) and Reason (R) are true and Reason (R) is not a correct explanation of Assertion (A).
Assertion (A) is true and Reason (R) is false.
Assertion (A) is false and Reason (R) is true.
Solution
Assertion (A) is true and Reason (R) is false
Explanation:
- The assertion is correct because an argument is indeed a value passed to a method when it is called.
- However, the reason is incorrect because the variables declared in a method prototype to receive values are called formal parameters, not actual parameters.
APPEARS IN
RELATED QUESTIONS
Write a method prototype name check() which takes an integer argument and returns a char:
The number of values that a method can return is ______.
A method which does not modify the value of variables is termed as ______.
Method prototype for the method compute which accepts two integer arguments and returns true/false.