Answer:
a.True.
Step-by-step explanation:
A throw statement is used to throw an exception from inside the method.Whenever the throw statement is encountered by the compiler and after that when it is executed the execution of the currently executing method is stopped and it returns back to caller.
There is also a keyword Throws which is used to tell the compiler that the method may throw one or more exceptions.
Hence we conclude that the answer is True.