Given the code, is TreasureNotFound a checked or unchecked e…

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

Given the class below, correctly override Object’s equals me…

Given the class below, correctly override Object’s equals method in this class, ensuring that it compares the full state of the object (i.e. the values of all data fields).Include the method header, curly braces, and implementation in your response. public class Planet {    private byte numMoons;    private String name;   /* assume a valid constructor exists */    /* YOUR equals METHOD HERE */} Make sure to select the ‘Preformatted’ style from the dropdown so your code is formatted clearly. DO NOT USE THE TAB KEY WHEN WRITING CODE AS YOU MAY ACCIDENTALLY SUBMIT YOUR EXAM. USE THE SPACE BAR INSTEAD.

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);     } }