
FOR JAVA
1. Implement the following classes and interface in Java.
-
Shape interface which has the following methods:
-
– public double perimeter(); // doesn’t have any parameters, re- turns the perimeter of the shape.
-
– public double area(); // doesn’t have any parameters, returns the area of the shape.
-
– public void info(); // doesn’t have any parameters, prints the perimeter and area of the shape.
-
-
Circle class that implements Shape interface and has a constructor that takes the radius.
-
Rectangle class that implements the Shape interface and has a con- structor that takes the width and height.
-
Square class that extends the Rectangle class and has a constructor that takes the edge length.
– Square constructor should only call the super constructor with correct parameters.
– Square constructor should not explicitly implement the Shape class, but it should inherit the perimeter, area and info methods from the Rectangle class.
2. Create a Test class, and create one Circle, one Rectangle and one Square objects. Call their info method in main method.

Trending nowThis is a popular solution!
Step by stepSolved in 5 steps with 1 images

- ZOOM + Press Esc to exit full screen Create a new java project named CH46EX 1. Create a class named Student 1. 2 private instance data fields – student name, student id 2. 1 final and static constant for a COLLEGE, set to "Fullerton" Create one programmer written constructor that accepts parameters for two instance data fields during instantiation Create a static method named demoStaticMethod ()-see output 3. | - print message, print college 4. Create a non-static method named demoObjectMethod ()– see output - print message, college, student name, student id 2. Create an application named StudentDemo 1. Create/instantiate 1 student object 2. Call each method correctly This demo is a static method Fullerton 3. Expected Output > This demo is a non-static method Fullerton Name: Wyle Coyote ID: 456arrow_forward1. 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_forwardJava Netbeansarrow_forward
- USING JAVA: Part A) Implement a superclass Appointment and subclasses Onetime, Daily, and Monthly. An Appointment has a description (for example, “See the dentist”) and a date. Write a method, occuresOn(int year, int month, int day) The check whether the appointment occurs on that date. For example, for appointment, you must check whether the day of the month matches. This fill an array of Appointment objects with a mixture of appointments. Have the user enter a date and print out all appointments that occur on that date. Part B) Improve the appointment book by giving the user the option to add new appointments. The user must specify the type of the appointment, the description, and the date.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_forwardWrite a java program to complete the following parts: Part-1: Create a class Car and perform the following: - Declare public instance variables (name, model, color) as (String, int, and String) respectively. - Define set() method to set a car's name, model, and color. Define show() method to print out the car's name, model, and color. Part-2: In the main method: Declare an array of the defined class Car with length 5. Create three objects from Car and add them into the array. Set the objects' values (name, model, color) using set method. Print out the object's values (name, model, color) using show method.arrow_forward
- Match the following: A class that contains no methods (other than constructors) that change any of the data in its object modifier means that there are no restrictions on where an instance variable or method can be used hiding implementation details is done by marking data and methods as When we call a method in Java using class type parameters Overloading is achieved when two or more methods in the same class have the same…arrow_forwardJava Computer Programming. Each robot: - Has a name (attribute name: string) - Has a position: given by the integer attributes x and y. - Has a direction: given by the direction attribute that takes one of the values "North", "East", "South" or "West". The name, position and direction of a robot are given to it at the moment of its creation - Can advance one step forward: with method without parameter advance () - Can turn right 90 ° to change direction (if its direction was "North" it becomes "East", if it was "East" it becomes "South", etc.): with the method without parameter right(). Robots cannot turn left. - Can display its detail with the method detail() Detail: name, position, and current direction.arrow_forwardJava: According to this diagram, what are the methods that the StagBeetle class can use? (Select all that apply) Group of answer choices: A: hornSize B: fly() C: emitPheromone() D: eat()arrow_forward
- Create a UML class diagram of the application illustrating class hierarchy, collaboration, and the content of each class. There is only one class. There is a main method that calls four methods. I am not sure if I made the UML Class diagram correct. import java.util.Random; // import Random packageimport java.util.Scanner; // import Scanner Package public class SortArray{ // class name public static void main(String[] args) { //main method Scanner scanner = new Scanner(System.in); // creates object of the Scanner classint[] array = initializeArray(scanner); System.out.print("Array of randomly generated values: ");displayArray(array); // Prints unsorted array sortDescending(array); // sort the array in descending orderSystem.out.print("Values in desending order: ");displayArray(array); // prints the sorted array, should be in descending ordersortAscending(array); // sort the array in ascending orderSystem.out.print("Values in asending order: ");displayArray(array); // prints the…arrow_forwardJava programarrow_forward(1) Add an __init__ method to the Widget class below. Each object of type Widget should have an instance variable called name and an instance variable called cost that represents a cost in dollars; those values are passed in when an object of type Widget is initialized. (2) Add a method to class Widget called is_cheap that returns True if the cost is less than $10, and False otherwise. (3) Add proper doctrings along with two examples for each method. You may use the Sample Usage code given below in your work.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





