Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Here is an outline for a working class OldCellPhone that has no errors ( you may see this exact class several times in this exam

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 addMemory() whose job it will be to increase the private int memCapacity by an amount specified by the client as long as the new, increased memory capacity after increasing it is still <= MAX_CAP. Otherwise, it will not touch memCapacity.
Check the true statements (there may be more than one correct answer):
Group of answer choices
This should be a static method.
This should be an instance method.
If correctly defined, a client could add 30 units of memory to the OldCellPhone object, myCell, by using the syntax:
OldCellPhone.addMemory(30);
If correctly defined, a client could add 30 units of memory to the OldCellPhone object, myCell, by using the syntax:
OldCellPhone.addMemory( myCell(30));
If correctly defined, a client could add 30 units of memory to the OldCellPhone object, myCell, by using the syntax:
myCell.addMemory(30);

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database 10g Insider Solutions

Authors: Arun R. Kumar, John Kanagaraj, Richard Stroupe

1st Edition

0672327910, 978-0672327919

More Books

Students also viewed these Databases questions