Given abstract parent class Ball.java, write a concrete chil…

Given abstract parent class Ball.java, write a concrete child class that implements any necessary methods. You can pick any specific Ball type you want (e.g. football, soccer ball, tennis ball, etc). You do not have to provide method body statements for the method(s).  public abstract class Ball {     public abstract void inflate();     public int bounce(int howHigh) {         // do bouncing stuff     } } 

Given the code, is Missing a checked or unchecked exception?…

Given the code, is Missing a checked or unchecked exception? Is Location a checked or unchecked exception? Missing: Location: class Missing extends Exception {     public Missing(String msg) {         super(msg);     } }  class Location extends RuntimeException {     public Location(String msg) {         super(msg);     } }