
Create a class Divide with the following fields, constructors and methods:
Fields: create two double fields called numerator and denominator
Constructors:
- a no-argument constructor
- a constructor with two parameters
Methods:
- write a getter to return the result of numerator divided by denominator
- Create 4 overloaded calculate methods.
Note: Division would be numerator divided by denominator
1. method receives two double parameters and returns the result of the division as double
2. method receives two integer parameters and returns the result of the division as double
3. method receives one integer parameter and another as double parameter and returns the result of the division as int
4. method receives two String parameters and returns the result of the division as int
Create a demo class to test the two constructors, all the methods and display the returned values. You can hard code the parameters values when calling the constructor and the methods.

Step by stepSolved in 3 steps with 1 images

- Javaarrow_forwardO Challenge task Write the code of the Constructors and Distructor for the following class 1-Write the code for the empty constructor, that sets X, Y to 0, and prints "Constructor 1 2-Write the code for the parameterized constructor, that takes two integers AB and assigns X A Y=B. and prints the Sentance "Constructor 2 3-Write the code for the Distructor that prints the Sentance "Distruct" followed by the value of X, Y Constraints 5 Input Format the input is two integers E. Output Format as shown in Test case Sample #1 Input 57 Output Constructor 1 Constructor 2 Constructor 1 Destruct 0,0 Destruct 5,7 Destruct 0,0arrow_forwardWrite a C++ program that does the following: Create a class called Automobile This class has the following private attributes: model year mileage This class has the following methods: Default constructor Non-default constructor that will initialize all the above attributes Set/Get method for each of the above attributes displayAuto that will print the information for the Automobile all three attributes on the same line with proper spacing Destructor method that will print a message that the object has been deleted Create a class called Inventory This class has the following private attributes: count: This represents how many current automobiles in the inventory maxCount: This represents the maximum number of automobiles that can be stored autoPtr: A pointer to Automobile objects. This class has the following methods: Default constructor (count is 0, maxCount will be 10, autoPtr is NULL) Non-default constructor that will have one integer parameter count will be initialized…arrow_forward
- Make C# (Sharp): console project named MyPlayList. Create an Album class with 4 fields to keep track of title, artist, genre, and copies sold. Each field should have a get/set property. Your Album class should have a constructor to initialize the title (other 3 variables should default to null or 0). In addition, create a public method in the Album class to calculate amount sold for the album (copies sold * cost_of_album). You determine the cost of each album. Also create a method in the Album class to display the information. Print out of information should look something like this: The album Tattoo You by the Rolling Stones, a Rock group, made $25,000,000. In the main method, create 3 instances of the Album class with different albums, use setters to set values of the artist, genre, and copies sold. And then use getters to display information about each on the console.arrow_forward1- Design a class named Rectangle to represent a Rectangle. The class contains: • three variables integer data field named height, integer data filed named width and integer data filed named length. The default values are 1 for height, length, and width are 1.0 for each of them respectively. • A no-arg constructor that creates a default Rectangle. • A constructor that creates a Rectangle with the specified height, length and width. • A method named getVolume() that returns the volume of this Rectangle. (Volume = height * width * length) %3! 2- Write a test program called Test Rectangle that: • Creates two Rectangle objects: one object with height 11, length 5, and width 7, the other object with height 10, length 2 and width 6 • Display the volume of each Rectangle object.arrow_forwardCreate a Class called Transaction with: instance variables: stock - your stock class type - char -> b or s (buy/sell) quantity - can be fractional price - buy/sell price when - LocalDate constructors: constructor with parameters for stock, type and quantity. - sets the price from the stock price instance variable - sets when from LocalDate getters and setters for each instance variablearrow_forward
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY





