Java Exception Practice Test-2

Can we use parent exception to catch a child exception?

If parent class method throws an exception can the overriden method in child class throw a different exception?

Which Exception is correct for checked exception?

Which Exception is correct for unchecked exception?

Which is correct for UnsupportedOperation Exception?

When the main() method is not declared as static then which Exception occurred?

If static modifier is not include in the main method signature in java then which type exception occurred?

Is it mandatory to be follow a try block with catch block?