
MUST BE IN ONE JAVA FILE
Write a Java program A4p1.java with a public class A4p1 and no named packages to read from stdin information for several singers and dancers. You can try with the following design choices: design an abstract superclass Person with appropriate constructor(s) to initialize member variables such as name (of type String), sex (of type String), age (of type int), rank (of type int); design an interface Honorable with one method HowToHonor (of return type String); the Person class can have an abstract method HowToPerform (of return type String) and implement the Comparable interface; design two additional non-abstract subclasses Singer and Dancer of the Person class with appropriate constructor(s) and let them implement the Honorable interface. You can override the toString method of these three classes to provide a suitable string representation for objects of these classes. Put all classes and interfaces in the same file. A sample run can look like the following (you can also try running it with standard input redirection):



Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 7 images

Where is the second part of the code that prints the people in order of age? Seen in the example output.
Where is the second part of the code that prints the people in order of age? Seen in the example output.
- Question: Mr. Hamza is working as an accountant in the Octal Company. He wants to calculate salary of his company employees. Develop a java program to calculate salary using the concept of abstract based on the following instructions. Save the project/file as AccountantYourID. A) Abstract Class name: YourFirstName_Octal Abstract Member Method: – to calculate and return salary salary() B) Class name: Employee extends YourFirstName_Octal Member variables: wage, noOfDays, bonus Member Method : – parameterized constructor to initialize member variables – to calculate and return salary salary = (wage3 * noOfDays) / 4 + bonus C) Controlling class : – To create an object of Employee – To print salary of the Employee – To print bonus of Employeearrow_forwardAn employee has a name, phone number and salary. A coach is a person with a senitority status, one of: junior, lead, and senior. Define the possible status values as constants. A staff is a person with a job title and job descrption. Your programming task is to Implement as abstract class named Employee and two subclass name Coach and Staff in Java as defined above Provide constructors for classes to initalize private variable Override the toString() method in each of the classes in task 1 to display the class name and the person's name Write an application to create objects of type Coach and Staff and print the person's name and the class name of the objectsarrow_forwardWrite a Java program A2p1.java with a public class A2p1 and no named packages to read from stdin information for several singers and dancers. You should design a superclass Person with appropriate constructor(s) to initialize member variables such as name (of type String), sex (of type String) and age (of type int). You should design two additional subclasses Singer and Dancer of the Person class with appropriate constructor(s) to initialize additional member variables such as favorite (of type String). You can add the toString method to these three classes to provide a suitable string representation for objects of these classes. Put all four classes in the same file. A sample run can look like the following (you can also try running it with standard input redirection): [~/temp] $ java A2p1 [kwang@computer] How many persons do you want to input? 3 Enter information for person 1: Name: Tom Sex ('F' or 'M') : M Age: 18 Singer or Dancer ('S' or 'D'): S Favorite song: songl Enter…arrow_forward
- The language is Python Build a UML Diagram for the CellPhone class (The picture attatched below is what you need to reference when answering the question.)arrow_forwardDesign a console program that will print details of DVDs available to buy. Make use of an abstract class DVD with variables that will store the title, yearReleased, running time and price of a DVD. Create a constructor that accepts the title, yearReleased and running time through parameters and assign these to the class variables. Create an abstract set method for the price of a DVD; also create get methods for the variables.Create a subclass InstructionalDVD that extends the DVD class and implements an iPrintable interface. The interface that must be added is shown below:public interface iPrintable { String ShowDetails();}The InstructionalDVD subclass has a private variable named category for which a get method must be written. The constructor of the InstructionalDVD class must accept the title, yearReleased, running time and category through parameters. Write the code for the setPrice() and ShowDetails() methods.Write a useDVD class and instantiate 2 objects of the InstructionalDVD…arrow_forwardWrite classes for representing game state and movearrow_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





