ICSE Class 10 Computer Applications Question 13 of 30

Solved 2025 Specimen Paper ICSE Class 10 Computer Applications — Question 13

Back to all questions
13
Question

Question 1(xiii)

The statement that brings the control back to the calling method is:

  1. break
  2. System.exit(0)
  3. continue
  4. return
Answer

return

Reason — The return statement in Java is used to bring the control back to the calling method. If the method has a return type other than void, the return statement also passes back a value to the calling method.