ICSE Class 10 Computer Applications Question 19 of 30

Solved Sample Paper 3 — Question 19

Back to all questions
19
Question

Question 1(xix)

Assertion (A) The return statement causes program control to transfer back to the caller of the method.
Reason (R) The return statement immediately terminates the method in which it is executed.

  1. Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
  2. Both Assertion (A) and Reason (R) are true and Reason (R) is not a correct explanation of Assertion (A).
  3. Assertion (A) is true and Reason (R) is false.
  4. Assertion (A) is false and Reason (R) is true
Answer

Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).

Reason — Assertion (A) is true as the return statement causes program control to transfer back to the caller of the method. Reason (R) is also true as the return statement immediately terminates the method in which it is executed and the control transfers back to the caller method. Thus, Reason (R) correctly explains Assertion (A).