What will be the reaction when a catch clause has no conditionals?

What will be the reaction when a catch clause has no conditionals? Correct Answer Takes it to be true

The try and catch statement handles some or all of the errors that may occur in a block of code, while still running code. If a catch clause has no conditional, it behaves as if it has the conditional if true, and it is always triggered if no clause before it was triggered.
Bissoy MCQ

Related Questions

What will be the reaction when a catch clause has no conditionals ?
___________ is favoured over conditionals to better write testable code.