MCQ Practice Single Best Answer Topic: ICSE Computer Application - Class X - 2025 SPECIMEN QUESTION PAPER

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

Question ID
#24266
Subchapter
ICSE Computer Application - Class X - 2025 SPECIMEN QUESTION PAPER
Action
Choose one option below

Choose Your Answer

Click an option to check whether your answer is correct.

  • A break
  • B System.exit(0)
  • C continue
  • D return
Correct Answer: D

Explanation

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

  • break → exits a loop or switch, but control does not go to the calling method.

  • System.exit(0) → terminates the entire program.

  • continue → skips the current iteration of a loop, but stays inside the loop.

  • returnexits from the current method and returns control to the calling method. ✅

Answer: (d) return

Share This Question

Share this MCQ with your friends or study group.