KnowledgeBoat Logo

Computer Applications

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

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

Java Conditional Stmts

ICSE Sp 2025

6 Likes

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.

Answered By

4 Likes


Related Questions