Computer Networking: A Top-Down Approach (7th Edition)
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Bartleby Related Questions Icon
Related questions
Question
Transcribed Image Text:**Creating a Square Subclass from GeometricObject**
1. **Define the Square Subclass:**
- Create a subclass named `Square` from the superclass `GeometricObject`.
2. **Instance Variable:**
- Define an instance variable named `width` with an initial value of 0.
3. **Constructors:**
- Implement a no-argument constructor.
- Create an additional constructor that accepts one parameter, `wid`, and assigns it to the instance variable `width`.
4. **Methods:**
- Implement the method `getWidth()`.
- Implement the method `setWidth()`.
- Override the `getArea()` method to compute the area of the square.
- Override the `getPerimeter()` method to compute the perimeter of the square.
5. **Testing the Square Class:**
- Create a test class named `Test`.
- Generate an instance of `Square` with `wid = 6`.
- Use the `getArea()` and `getPerimeter()` methods to print the area and perimeter of the square with `width = 6`.
Transcribed Image Text:The image depicts a Java class for educational purposes. The class is an abstract representation of a geometric object, named `GeometricObject`. Below is an explanation and transcription of the class for use on an educational website.
### Abstract Class: GeometricObject
This abstract class is intended to provide a template for geometric objects.
```java
public abstract class GeometricObject {
private String color = "white";
private boolean filled;
private java.util.Date dateCreated;
/** Constructors */
protected GeometricObject() {
dateCreated = new java.util.Date();
}
protected GeometricObject(String color, boolean filled) {
dateCreated = new java.util.Date();
this.color = color;
this.filled = filled;
}
/** Accessors & mutators */
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public boolean isFilled() {
return filled;
}
public void setFilled(boolean filled) {
this.filled = filled;
}
public java.util.Date getDateCreated() {
return dateCreated;
}
@Override
public String toString() {
return "created on " + dateCreated + "\ncolor: " + color +
" and filled: " + filled;
}
/** Abstract method getArea & getPerimeter */
public abstract double getArea();
public abstract double getPerimeter();
}
```
### Explanation:
- **Attributes:**
- `color`: A `String` representing the color of the geometric object, initialized to "white".
- `filled`: A `boolean` indicating whether the object is filled.
- `dateCreated`: A `Date` object that indicates when the object was created.
- **Constructors:**
- The default constructor initializes `dateCreated`.
- An overloaded constructor allows setting the `color` and `filled` state.
- **Accessors (Getters) and Mutators (Setters):**
- Methods for accessing (`getColor`, `isFilled`, `getDateCreated`) and modifying (`setColor`, `setFilled`) the attributes.
- **Abstract Methods:**
- `getArea()` and `getPerimeter()` are abstract methods intended to
Expert Solution
Check MarkThis question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
bartleby
This is a popular solution
bartleby
Trending nowThis is a popular solution!
bartleby
Step by stepSolved in 3 steps with 1 images
Knowledge Booster
Background pattern image
Similar questions
- In Java Your uncle is trying to keep track of his new-car and used-car lots by writing a Java program. Heneeds your help in setting up his classes.Implement a superclass named Car that contains a price instance variable, a getPrice method, anda 1-parameter constructor. The getPrice method is a simple accessor method that returns the priceinstance variable’s value. The 1-parameter constructor receives a cost parameter and assigns avalue to the price instance variable based on this formula:price = cost * 2;Implement two classes named NewCar and UsedCar; they are both derived from the Carsuperclass. NewCar should contain a color instance variable (the car’s color). UsedCar shouldcontain a mileage instance variable (the car’s odometer reading). The NewCar and UsedCarclasses should each contain a 2-parameter constructor, an equals method, and a toString() method.In the interest of elegance and maintainability, don’t forget to have your subclass constructors callyour superclass constructors...arrow_forwardThis assignment requires one project with two classes. Class Employee Class Employee- I will attach the code for this: //Import the required packages. import java.text.DecimalFormat; import java.text.NumberFormat; //Define the employee class. class Employee { //Define the data members. private String id, lastName, firstName; private int salary; //Create the constructor. public Employee(String id, String lastName, String firstName, int salary) { this.id = id; this.lastName = lastName; this.firstName = firstName; this.salary = salary; } //Define the getter methods. public String getId() { return id; } public String getLastName() { return lastName; } public String getFirstName() { return firstName; } public int getSalary() { return salary; } //Define the method to return the employee details. @Override public String toString() { //Use number format and decimal format //to format the salary...arrow_forward1. For methods parameters are specified in the method definition, arguments are provided during a method call arguments are specified in the method definition, parameters are provided during a method call arguments override parameters parameters encapsulate arguments 2 Local variables are not automatically initialized. True False 3 Composition refers to an 'is-a' relationship. True False 4 Class constructors must be declared with a return type equal to the class. True False 5 Object instances are created using the "new" keyword. True Falsearrow_forward
- Is there a different way of doing this problem? Question: Create a class AccessPoint with the following attributes: x - a double representing the x coordinate y - a double representing the y coordinate range - an integer representing the coverage radius status - On or Off Add constructors. The default constructor should create an access point object at position (0.0, 0.0), coverage radius 0, and Off. Add accessor and mutator functions: getX, getY, getRange, getStatus, setX, setY, setRange and setStatus. Also, add a set function that sets the location coordinates and the range. Add the following member functions: move and coverageArea. Add a function overlap that checks if two access points overlap their coverage and returns true if they overlap. Add a function signalStrength that returns the wireless signal strength as a percentage. The signal strength decreases as one moves away from the access point location. Test your class by writing a main function that creates five access...arrow_forwardCreate a class named Poem that contains the following fields: title - the name of the poem (of type String) lines - the number of lines in the poem (of type int) Include a constructor that requires values for both fields. Also include get methods to retrieve field values. Create three subclasses: Couplet, Limerick, and Haiku. The constructor for each subclass requires only a title; the lines field is set using a constant value. A couplet has two lines, a limerick has five lines, and a haiku has three lines. These are the provided classes and subclasses : public class Poem { // Define the Poem class here } public class Limerick { // Define the Limerick class here } public class Haiku { // Define the Haiku class here } public class Couplet { // Define the Couplet class here } import java.util.*; public class DemoPoems { publicstaticvoidmain(String[] args) { Poem poem1 =newPoem("The Raven",84); Couplet poem2 =newCouplet("True Wit"); Limerick poem3 =newLimerick("There was an...arrow_forwardWrite the Circle class:• A Circle has a radius– Add instance variable– 2 constructors – one should be the default or no args– Add accessor and mutator method for each instance variable– Add methods to calculate Area, Perimeter, and Diameter– Write a printArea method in the main program which receives an object circleand "times" integer– printArea() will print the radius and area of objects "times" time by changingthe radius of object.public static void printAreas(Circle c, int times) {System.out.println("Radius \t\t Area");while (times>=1) {//print the radius and area here// create a new object by changing the radius heretimes--;}}//end of printAreasarrow_forward
- Create a Class Pet with the following data members Identification: String species : String (e.g. cat, dog, fish etc) breed: String Age (in days): int Weight: float Dead: boolean 1. Provide a constructor with parameters for all instance variables. 2. Provide getters for all and setters for only breed, and weight 3. Provide a method growOld() that increases the age of the pet by one day. A dead pet wont grow old 4. Provide a method growHealthy(float w) that increases the weight of the pet by the given amount w. A dead pet cannot grow healthy. 5. Provide a method fallSick(float w) that reduces the weight of the pet by the given amount. The least weight a pet can have is 0 which will mean that the pet has died. If the value of weigh is 10 kg and the method is called with an argument of 11 kg then you will set it to 0 and set the dead to an appropriate value to mark the death of the pet 6. Provide a toString method that shows an appropriate well formatted string...arrow_forwardCreate a new project called Family. Add a person class with name, birthDate, and sex private instance variables. Create the public getter and setter methods for each. Create an overloaded constructor that initializes all of the instance variables. Create the default constructor. Override the toString () method to show the Person's info. Create the Person in the main method, and display that person's info. Now add a new instance variable to the Person class of type Person with the identifier spouse. Spouse should be private with setter and getter methods. If you try to instantiate spouse in the contructor, you will get a stack overflow error. Each Person, creates a Person, creates a Person, and so on forever. Try that to see the error and then remove the code from the constructor. Add the following logic: in Person there should be a method to show Spouse. If spouse is null, display or return "Not Married", otherwise call the toString() method. The should also be a get married method....arrow_forwardCreate the class Suitcase. Suitcase has things and a maximum weight limit, which defines the greatest total allowed weight of the things contained within the Suitcase object. Add the following methods to your class: A constructor, which is given a maximum weight limit public void addThing(Thing thing), which adds the thing in the parameter to your suitcase. The method does not return any value. public String toString(), which returns a string in the form "x things (y kg)" The things are saved into an ArrayList object: ArrayList<Thing> things = new ArrayList<Thing>(); The class Suitcase has to make sure the thing's weight does not cause the total weight to exceed the maximum weight limit. The method addThing should not add a new thing if the total weight happens to exceed the maximum weight limit. Below, you find an example of how the class can be used: public class Main { public static void main(String[] args) { Thing book = new Thing("Happiness...arrow_forward
- 1. Define a Class: Circle Circle - radius: double + Circle() +Circle(double r) +setradius(double r): void +getradius() : double +calculateArea(): double +calculateCircumference: double 2. Use a Circle instance (object) in a main() method Program.arrow_forwardPlease help me with this exercise. Thank you!arrow_forwardCreate a subclass named Square from the superclass GeometricObject. Create an instance variable named width with initial value 0. Create a no-arg constructor. Create the another constructor, which has one parameter named wid. Assign the wid to the instance variable named width. Create the getWidth() method, the setWidth() method. Override the getArea() method. Override the getPerimeter() method. Create a test class named Test to create an instance with wid= 6 from Square class. Call the getArea() and getPermeter() methods to print out the area and perimeter of the square with width=6.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Text book imageComputer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONText book imageComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceText book imageNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Text book imageConcepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningText book imagePrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationText book imageSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY
Text book image
Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON
Text book image
Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science
Text book image
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning
Text book image
Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning
Text book image
Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education
Text book image
Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY