subject

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 make the static DEFAULT_DSCR mutable, removing its final status, as in: static public String DEFAULT_DSCR = "(generic phone)";A mutator is added for this member. Any String whose length is at least 2 characters will be acceptable as a new DEFAULT_DSCR. Check the true statements (there may be more than one correct answer):A. If the mutator takes a String parameter, newDefault, a reasonable definition would be: if ( newDefault. length() < 2 ) { this. newDefault = DEFAULT_DSCR; return false; } this. newDefault = newDefault; return true;B. If the mutator takes a String parameter, newDefault, a reasonable definition would be: if ( newDefault. length() < 2 ) return false; DEFAULT_DSCR = newDefault; return true;C. The mutator for this member will be an instance method. D. If the mutator takes a String parameter, newDefault, a reasonable definition would be: if ( newDefault. length() > 0 ) return false; DEFAULT_DSCR = newDefault; return true;E. The mutator for this member will be a static method.2.Consider the class as partially defined here://class PizzaOrder class PizzaOrder{ // static public members public static final int MAX_TOPPINGS = 20; // instance members private String toppings[]; private int numToppings; // constructor public PizzaOrder() { numToppings = 0; toppings = new String[MAX_TOPPINGS]; } // accessor tells # toppings on pizza, i. e., #toppings in array public int getNumToppings() { return numToppings; } // etc.}

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 20:00
What is used to analyze and summarize your data without graphical support
Answers: 1
question
Computers and Technology, 23.06.2019 04:10
2pointswho was mikhail gorbachev? oa. a russian leader who opposed a coupob. a polish leader who founded the labor union "solidarityoc. a soviet leader who called for a closer relationship with the unitedstates, economic reform, and a more open societyd. a soviet leader who called for more oppression in the soviet union
Answers: 3
question
Computers and Technology, 24.06.2019 01:30
Hazel has just finished adding pictures to her holiday newsletter. she decides to crop an image. what is cropping an image?
Answers: 1
question
Computers and Technology, 24.06.2019 04:30
Fall protection, confined space entry procedures, controlled noise levels, and protection from chemical hazards are some of the things that contribute to a safe what
Answers: 1
You know the right answer?
Here is an outline for a working class OldCellPhone that has no errors (you may see this exact class...
Questions
question
Geography, 19.07.2019 03:00
Questions on the website: 13722361