What is the difference between throw and throws?
Options
- The throws key word is used to explicitly throw an exception, while throw is utilized to handle checked exceptions
- The throw key word is used to implicitly throw an exception, while throws is utilized to handle checked exceptions
- The throws key word is used to implicitly throw an exception, while throw is utilized to handle checked exceptions
- The throw key word is used to explicitly throw an exception, while throws is utilized to handle checked exceptions
CORRECT ANSWER : The throw key word is used to explicitly throw an exception, while throws is utilized to handle checked exceptions
Write your comments