Question: You're adding error handling to the code shown. Which code would you include within the if statement to specify an error message?
- `exception('One or both parameters are not numbers')`
- `catch('One or both parameters are not numbers')`
- `error('One or both parameters are not numbers')`
- `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')`