Here is an outline for a working class OldCellPhone that has no errors (you may see this exact class several times in this exam): class OldCellPhone { static public final int MIN_CAP = 10; static public final int MAX_CAP = 1000; static public final String DEFAULT_DSCR = "(generic phone)"; private String description; private int memCapacity; private boolean camera; private boolean gps; public void setCamera( boolean hasCam ) { camera = hasCam; } public void setGps( boolean hasGps ) { gps = hasGps; } public OldCellPhone() { this(DEFAULT_DSCR, MIN_CAP, false, false); } public OldCellPhone(String dscr, int mem, boolean cam, boolean gp) { // not shown } public String toString() { // not shown } public boolean setMemCapacity(int mem) { // not shown } }; A programmer decides to add a method add20ToMemory() whose job it will be to increase the private int memCapacity by 20 as long as the new, increased memory capacity, after adding 20, is still <= MAX_CAP. Otherwise, it will not touch memCapacity. Check the true statements (there may be more than one correct answer): A. This should be an instance method. B. The method should be a void return type. C. This should be a static method. D. The method should have a boolean return type. E. If the program chose to make it a static method, it would not need any parameters to do its job. F. If the programmer chose to make it an instance method, it would not need any parameters to do its job.