Question: What defines the catch block most accurately?

  1. The catch block that will be executed is the one that best matches the type of exception thrown.
  2. Multiple catch blocks can never be associated with a single try block.
  3. Multiple catch blocks are mandatory for each try block.
  4. Multiple catch blocks will all be executed in the case of an exception.

Answer: The correct answer of the above question is Option A:The catch block that will be executed is the one that best matches the type of exception thrown.