Which statements are true?
<a>All classes of Exception extends Error.
<b>All classes of Error extends Exception.
<c>All Errors must be handled or declared.
<d>All classes of Exception extends Throwable.
<e>All Throwables must be handled or declared.
<f>All Exceptions must be handled or declared.
<g>Runtime Exceptions need never be handled or declared.
According to me answer should be d and f as I think runtime exceptions such as Arithmetic Exceptions need to be handled as we always put them in try and catch block so handling it but in ocjp book by "Kathy Sierra" it is given that answer is d and g. Who is correct? Have I misunderstood something?