Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Which of the following statements invoke the exception class?

a) throws new Exception();
b) throw new Exception();
c) new Exception();
d) new throws Exception();

Answer: b
Explanation: throw new Exception(); trigger an exception and each “throw” must have at least one “catch”.

Join The Discussion