Question: You're adding error handling to the code shown. Which code would you include within the if statement to specify an error message?

  1. `exception('One or both parameters are not numbers')`
  2. `catch('One or both parameters are not numbers')`
  3. `error('One or both parameters are not numbers')`
  4. `throw('One or both parameters are not numbers')`

Answer: The correct answer of the above question is Option D:`throw('One or both parameters are not numbers')`